Dodatki do przeglądarki Firefox
  • Rozszerzenia
  • Motywy
    • do Firefoksa
    • Słowniki i pakiety językowe
    • Inne strony
    • Dodatki na Androida
Zaloguj się
Podgląd „Email Address Generator”

Email Address Generator Autor: TriLinder

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

Dostępne w Firefoksie na Androida™Dostępne w Firefoksie na Androida™
0 (0 reviews)0 (0 reviews)
49 Users49 Users
Potrzebujesz Firefoksa, aby używać tego rozszerzenia
Pobierz Firefoksa i to rozszerzenie
Pobierz plik

Metadane rozszerzenia

Zrzuty ekranu
The add-on in use on a registration page
O tym rozszerzeniu
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).
Oceniony na 0 przez 0 recenzentów
Zaloguj się, aby ocenić to rozszerzenie
Nie ma jeszcze ocen

Zapisano ocenę w gwiazdkach

5
0
4
0
3
0
2
0
1
0
Nie ma jeszcze recenzji
Uprawnienia i daneWięcej informacji

Wymagane uprawnienia:

  • Umieszczać dane w schowku
  • Mieć dostęp do kart przeglądarki
  • Mieć dostęp do danych użytkownika na wszystkich stronach
Więcej informacji
Strony dodatku
  • Domowa
  • Pomoc
Wersja
1.1
Rozmiar
12,98 KB
Ostatnia aktualizacja
rok temu (21 lip 2024)
Powiązane kategorie
  • Prywatność i bezpieczeństwo
  • Społecznościowe i komunikacyjne
Licencja
Licencja MIT
Historia wersji
  • Wszystkie wersje
Etykiety
  • privacy
  • security
Dodaj do kolekcji
Zgłoś ten dodatek
Więcej rozszerzeń od: TriLinder
  • Nie ma jeszcze ocen

  • Nie ma jeszcze ocen

  • Nie ma jeszcze ocen

  • Nie ma jeszcze ocen

  • Nie ma jeszcze ocen

  • Nie ma jeszcze ocen

Strona domowa Mozilli

Dodatki

  • O serwisie
  • Blog dodatków do Firefoksa
  • Warsztat rozszerzeń
  • Strefa autora
  • Zasady programistów
  • Blog społeczności
  • Forum
  • Zgłoś błąd
  • Wytyczne recenzji

Przeglądarki

  • Desktop
  • Mobile
  • Enterprise

Produkty

  • Browsers
  • VPN
  • Relay
  • Monitor
  • Pocket
  • Bluesky (@firefox.com)
  • Instagram (Firefox)
  • YouTube (firefoxchannel)
  • Prywatność
  • Ciasteczka
  • Kwestie prawne

O ile nie wskazano inaczej, treść tej strony jest dostępna na warunkach licencji Creative Commons Attribution Share-Alike w wersji 3.0 lub nowszej. Android jest znakiem towarowym firmy Google LLC.