Additivos del navigator Firefox
Aperir session
Vista preliminar de Email Address Generator

Email Address Generator per TriLinder

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

0 (0 reviews)0 (0 reviews)
45 Usatores45 Usatores
Tu pote usar iste extension solo sur Firefox
Discargar Firefox
Discargar file

Metadatos del extension

Capturas de schermo
The add-on in use on a registration page
A proposito de iste extension
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: [email protected]

The code for generating addresses can be found here (in the generate-address.js file).
Valutate 0 per 0 revisores
Aperi session pro evalutar iste extension
Il ha non ha ancora evalutationes

Evalutation de stellas salvate

5
0
4
0
3
0
2
0
1
0
Ancora nulle recensiones
Permissiones e datosSaper plus

Permissiones necessari:

  • Inserer datos in le area de transferentia
  • Accede al schedas del navigator
  • Acceder a tu datos pro tote le sitos web
Plus de informationes
Ligamines del additivo
  • Pagina principal
  • Sito de supporto
Version
1.1
Dimension
12,98 KB
Ultime actualisation
წლის წინ (21 ივლ 2024)
Categorias associate
  • Confidentialitate & securitate
  • Social & communication
Licentia
Licentia MIT
Historia de versiones
  • Vide tote le versiones
Etiquettas
  • privacy
  • security
Adder al collection
Reporta iste additivo
Altere extensiones ex TriLinder
  • Il ha non ha ancora evalutationes

  • Il ha non ha ancora evalutationes

  • Il ha non ha ancora evalutationes

  • Il ha non ha ancora evalutationes

  • Il ha non ha ancora evalutationes

  • Il ha non ha ancora evalutationes

Ir al pagina principal de Mozilla

Additivos

  • A proposito
  • Blog del additivos de Firefox
  • Laboratorio de extensiones
  • Centro de disveloppatores
  • Politicas pro disveloppatores
  • Blog del communitate
  • Foro
  • Reportar un defecto
  • Guida al revision

Navigatores

  • Desktop
  • Mobile
  • Enterprise

Productos

  • Browsers
  • VPN
  • Relay
  • Monitor
  • Pocket
  • Bluesky (@firefox.com)
  • Instagram (Firefox)
  • YouTube (firefoxchannel)
  • Confidentialitate
  • Cookies
  • Legal

Excepte ubi alteremente indicate, le contento de iste sito es publicate sub licentia Creative Commons Attribution Share-Alike v3.0 o qualcunque version plus recente.