Firefox Browser Eklentileri
  • Uzantılar
  • Temalar
    • Firefox için
    • Sözlükler ve dil paketleri
    • Diğer tarayıcı siteleri
    • Android eklentileri
Giriş
Email Address Generator ön izlemesi

Email Address Generator geliştiren: TriLinder

Generates unique email addresses based on the website hostname and the current time.

Android™ için Firefox’ta kullanılabilirAndroid™ için Firefox’ta kullanılabilir
0 (0 reviews)0 (0 reviews)
50 kullanıcı50 kullanıcı
Bu uzantıyı kullanmak için Firefox’a ihtiyacınız var
Firefox’u indir ve uzantıyı yükle
Dosyayı indir

Uzantı meta verileri

Ekran görüntüleri
The add-on in use on a registration page
Bu uzantı hakkında
An add-on for generating unique email aliases for a domain with a catch-all email address set-up.

READ THIS README ON GITHUB

The email addresses are generated in the following format:

<site-identifier>.<encoded-timestamp><format-version>@<email-domain>


Components:
  1. Site identifier:
    • Derived from the hostname of the current site
    • Dots are replaced with hyphens
    • The www. prefix is removed
    • Example: https://www.mail.google.com → mail-google-com

  2. Encoded timestamp:
    • Represents the time the email address was generated in seconds since May 1st, 2024 00:00 UTC
    • The value is encoded into a string using this alphabet abcdefghijklmnopqrstuvwxyz0123456789_

    • const ALPHABET = "abcdefghijklmnopqrstuvwxyz0123456789_";

      function encodeTimestamp(num) {
      let encoded = "";

      while (num > 0) {
      encoded = ALPHABET[num % ALPHABET.length] + encoded;
      num = Math.floor(num / ALPHABET.length);
      }

      return encoded;
      }

      function decodeTimestamp(encoded) {
      let decoded = 0;

      for (let i = 0; i < encoded.length; i++) {
      let charIndex = ALPHABET.indexOf(encoded[i]);
      decoded = decoded * ALPHABET.length + charIndex;
      }

      return decoded;
      }


  3. Format version identifier:
    • Current value: a
    • Subject to change in the future (allows future extensions to the format)

  4. Email domain:
    • Your email domain
    • Set in the extension's options page

Example of an email address: mail-google-com.d2l8da@example.com

The code for generating addresses can be found here (in the generate-address.js file).
0 inceleyiciden 0 puan aldı
Bu uzantıya puan vermek için giriş yapın
Henüz hiç puan yok

Puan kaydedildi

5
0
4
0
3
0
2
0
1
0
Henüz inceleme yapılmamış
İzinler ve verilerDaha fazla bilgi al

Gerekli izinler:

  • Panoya veri girişi
  • Tarayıcı sekmelerine erişme
  • Tüm web sitelerine ait verilerinize erişme
Daha fazla bilgi
Eklenti bağlantıları
  • Ana sayfa
  • Destek sitesi
Sürüm
1.1
Boyut
12,98 KB
Son güncelleme
bir yıl önce (21 Tem 2024)
İlgili kategoriler
  • Gizlilik ve Güvenlik
  • Sosyal ve İletişim
Lisans
MIT Lisansı
Sürüm geçmişi
  • Tüm sürümleri göster
Etiketler
  • privacy
  • security
Koleksiyona ekle
Bu eklentiyi rapor et
TriLinder tarafından geliştirilen diğer uzantılar
  • Henüz hiç puan yok

  • Henüz hiç puan yok

  • Henüz hiç puan yok

  • Henüz hiç puan yok

  • Henüz hiç puan yok

  • Henüz hiç puan yok

Mozilla'nın ana sayfasına gidin

Eklentiler

  • Hakkında
  • Firefox Eklentileri Blogu
  • Uzantı Atölyesi
  • Geliştirici Merkezi
  • Geliştirici Politikaları
  • Topluluk Blogu
  • Forum
  • Hata bildir
  • İnceleme rehberi

Tarayıcılar

  • Desktop
  • Mobile
  • Enterprise

Ürünler

  • Browsers
  • VPN
  • Relay
  • Monitor
  • Pocket
  • Bluesky (@firefox.com)
  • Instagram (Firefox)
  • YouTube (firefoxchannel)
  • Gizlilik
  • Çerezler
  • Hukuki Bilgiler

Aksi belirtilmedikçe bu sitedeki içerikler Creative Commons Attribution Share-Alike Lisansı v3.0 veya daha yeni sürümüyle lisanslanmıştır. Android, Google LLC’nin ticari markasıdır.