# Email Address Generator

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

Canonical page: [https://chrome-stats.com/d/email-address-generator](https://chrome-stats.com/d/email-address-generator)

## Overview

- **ID:** `email-address-generator`
- **Platform:** Firefox
- **Type:** Firefox add-on
- **Status:** Available
- **Publisher:** TriLinder
- **Category:** privacy-security,social-communication
- **Daily users:** 46
- **Weekly downloads:** 1
- **Version:** 1.1
- **Last updated:** 2024-07-22
- **First published:** 2024-05-28
- **Size:** 13 KB
- **Data as of:** 2026-09-13
- **Store listing:** [Firefox Add-ons Store](https://addons.mozilla.org/firefox/addon/email-address-generator/)
- **Website:** [https://github.com/TriLinder/EmailAddressGenerator/issues](https://github.com/TriLinder/EmailAddressGenerator/issues)

## Description

An add-on for generating unique email aliases for a domain with a catch-all email address set-up.

<strong><a href="https://prod.outgoing.prod.webservices.mozgcp.net/v1/ffdb3d8f4e160a5848038697550d7689eea583881c95fdb3daf3ecf6934f2bfd/https%3A//github.com/TriLinder/EmailAddressGenerator" rel="nofollow">READ THIS README ON GITHUB</a></strong>

The email addresses are generated in the following format:
<code>
&lt;site-identifier&gt;.&lt;encoded-timestamp&gt;&lt;format-version&gt;@&lt;email-domain&gt;
</code>

<b>Components:</b>

<ol>    <li><strong>Site identifier:</strong>
        <ul>            <li>Derived from the hostname of the current site</li>            <li>Dots are replaced with hyphens</li>            <li>The <code>www.</code> prefix is removed</li>            <li>Example: <code><a href="https://prod.outgoing.prod.webservices.mozgcp.net/v1/fee87f5dff954f2930c84b9059fc729aa8d95bd11d4253e54e07aa02a6c79b5c/https%3A//www.mail.google.com" rel="nofollow">https://www.mail.google.com</a></code> → <code>mail-google-com</code></li>        </ul>    </li>
    <li><strong>Encoded timestamp:</strong>
        <ul>            <li>Represents the time the email address was generated in seconds since <strong>May 1st, 2024 00:00 UTC</strong></li>            <li>The value is encoded into a string using this alphabet <code>abcdefghijklmnopqrstuvwxyz0123456789_</code></li>            <li>                <code>
const ALPHABET = "abcdefghijklmnopqrstuvwxyz0123456789_";

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

    while (num &gt; 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 &lt; encoded.length; i++) {
        let charIndex = ALPHABET.indexOf(encoded[i]);
        decoded = decoded * ALPHABET.length + charIndex;
    }

    return decoded;
}
                </code>
            </li>        </ul>    </li>
    <li><strong>Format version identifier:</strong>
        <ul>            <li>Current value: <code>a</code></li>            <li>Subject to change in the future (allows future extensions to the format)</li>        </ul>    </li>
    <li><strong>Email domain:</strong>
        <ul>            <li>Your email domain</li>            <li>Set in the extension's options page</li>        </ul>    </li></ol>
Example of an email address: <code>mail-google-com.d2l8da@example.com</code>

The code for generating addresses can be found <a href="https://prod.outgoing.prod.webservices.mozgcp.net/v1/9134cbcfb2d868955c13e1f09e35593c7c76a5a9124156869f2b370e9a944c4a/https%3A//github.com/TriLinder/EmailAddressGenerator/blob/main/generate-address.js" rel="nofollow">here</a> (in the <code>generate-address.js</code> file).

## Rankings

- #17,067 — Overall
- #13 — address
- #43 — polished emails
- #44 — export emails
- #47 — generator
- #52 — email

## Permissions and access

### Permissions

- `activeTab`
- `clipboardWrite`
- `tabs`
- `storage`

### Content script matches

- `<all_urls>`

## Safety

- **Risk impact:** High risk impact
- **Risk likelihood:** Moderate risk likelihood

### Analysis details

- Grants access to browser tabs, which can be used to track user browsing habits and history, presenting a privacy concern.
- This extension has low user count. Unpopular extensions may not be stable or safe.

> Some risk analysis details are omitted from this free response. [Upgrade to view the full analysis](https://chrome-stats.com/pricing).

## Similar extensions and apps

- [EAG: Email Alias Generator](https://chrome-stats.com/d/email-alias-generator) — 31 users, 5.00 / 5
- [Random Email Generator](https://chrome-stats.com/d/random-email-generator) — 2 users
- [Masking Email Generator](https://chrome-stats.com/d/masking-email-generator) — 10 users, 5.00 / 5
- [Email Alias Generator - HMAC](https://chrome-stats.com/d/email-alias-generator-hmac)
- [Random Email Generator](https://chrome-stats.com/d/random-email)
- [Placeholder Email Generator](https://chrome-stats.com/d/placeholder-email-generator)
- [Dynamic Email Alias](https://chrome-stats.com/d/dynamic-email-alias) — 1 users
- [Email Auto Filler](https://chrome-stats.com/d/email-auto-filler)
- [Random Email/Password Generator](https://chrome-stats.com/d/random-emailpassword-generator) — 1 users, 5.00 / 5
- [Hotmail Generator](https://chrome-stats.com/d/hotmail-generator) — 1 users
- [Temporary Email Generater](https://chrome-stats.com/d/temporary-email-generater) — 1 users
- [Email Alias Generator Pro](https://chrome-stats.com/d/email-alias-generator-pro) — 1 users

---

Source: [Chrome-Stats](https://chrome-stats.com/d/email-address-generator)
