Ew, Mail!

Ew, Mail! allows you to easily use a temp-mail.org mail when registering.

Cos'è Ew, Mail!?

Ew, Mail! è un'estensione di Chrome sviluppata da vantezzen, e la sua funzione principale è "Ew, Mail! allows you to easily use a temp-mail.org mail when registering.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Ew, Mail!

Scarica i file di estensione Ew, Mail! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Ew, Mail! allows you to easily use a temp-mail.org mail when registering. This extension is not affiliated to temp-mail.org in any way!

Simply right-click on any input field and select "Use temporary mail". Ew, Mail! will automatically open temp-mail.org in the background and insert your temporary e-mail address into the input field.

The full source code of this extension is available on https://github.com/vantezzen/ewmail, if you find any issues or have a question please visit https://github.com/vantezzen/ewmail/issues.

This extension needs the following permissions:
- "Read and change all you data on the websites that you visit" to read your current e-mail address from temp-mail.org and insert it into your current page

This extension is not affiliated to temp-mail.org in any way!                    

Informazioni di Base sull'Estensione

Nome Ew, Mail! Ew, Mail!
ID lidnahlamdofklamooajjnopnloljlgp
URL Ufficiale https://chromewebstore.google.com/detail/ew-mail/lidnahlamdofklamooajjnopnloljlgp
Descrizione Ew, Mail! allows you to easily use a temp-mail.org mail when registering.
Dimensione del File 43.18 KB
Conteggio Installazioni 101
Versione Corrente 1.2
Ultimo Aggiornamento 2020-01-02
Data di Pubblicazione 2019-12-30
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore vantezzen
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/vantezzen/ewmail
URL della Pagina della Politica sulla Privacy https://hollstein.io/browserprivacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ew, Mail!",
    "version": "1.2",
    "description": "Ew, Mail! allows you to easily use a temp-mail.org mail when registering.",
    "homepage_url": "https:\/\/github.com\/vantezzen\/ewmail",
    "icons": {
        "48": "icons\/icon-48.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/temp-mail.org\/",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background-scripts.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        }
    ]
}