Email Address Generator Firefox

Email Address Generator

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

Features & Capabilities

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.commail-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).

User Growth & Download Statistics

Contact the developer

Chrome-Stats does not own this Firefox add-on. Please use these information below to contact the Firefox add-on developer.
Developed by:
TriLinder
Firefox Add-ons Store
https://addons.mozilla.org/firefox/addon/email-address-generator/
Website:
https://github.com/TriLinder/EmailAddressGenerator/issues

Is Email Address Generator Safe?

Risk impact
Risk impact measures the level of extra permissions an extension has access to. A low risk impact extension cannot do much harms, whereas a high risk impact extension can do a lot of damage like stealing your password, bypassing your security settings, and accessing your personal data. High risk impact extensions are not necessarily malicious. However, if they do turn malicious, they can be very harmful.

Email Address Generator requires some sensitive permissions that could impact your browser and data security. Exercise caution before installing.

Risk impact analysis details
  • Critical Grants access to browser tabs, which can be used to track user browsing habits and history, presenting a privacy concern.
  • Critical ****** ****** ** *** ********* ****** * *********** ******** **** ** ** *** ******* *** ****** **** **** *** ******* *****
  • High ******* ******* **** *** ****** ***** *** ***** ** ******* **** ********* ********* ** * *********** *****
  • High ****** ******* *** ********* ********* ******** ***** *** ** ********** ****** * ******** ******* *****
Risk likelihood
Risk likelihood measures the probability that a Firefox add-on may turn malicious. This is determined by the publisher and the Firefox add-on reputation on Firefox Add-ons Store, the amount of time the Firefox add-on has been around, and other signals about the Firefox add-on. Our algorithms are not perfect, and are subject to change as we discover new ways to detect malicious extensions. We recommend that you always exercise caution when installing a Firefox add-on.

Email Address Generator is probably trust-worthy. Prefer other publishers if available. Exercise caution when installing this add-on.

Risk likelihood analysis details
  • High This extension has low user count. Unpopular extensions may not be stable or safe.
  • Low **** ********* *** ******* **** **** * ****** **** ***** ******** *** **** ****** ** ** ****** *** *****
  • Low **** ********* *** ***** **** **** * ****** **** ***** ********** *** **** ****** ** ** ****** *** *****
Extension Guard
Extension Guard

Discover every extension in use, analyze risks, and enforce blocking policies with Extension Guard

Secure Your Browser
Upgrade to see full risk analysis details

Best Email Address Generator Alternatives

Here are some Firefox add-ons that are similar to Email Address Generator: