Ew, Mail!

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

¿Qué es Ew, Mail!?

Ew, Mail! es una extensión de Chrome desarrollada por vantezzen, y su función principal es "Ew, Mail! allows you to easily use a temp-mail.org mail when registering.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Ew, Mail!

Descarga archivos de extensión Ew, Mail! en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Ew, Mail! Ew, Mail!
ID lidnahlamdofklamooajjnopnloljlgp
URL Oficial https://chromewebstore.google.com/detail/ew-mail/lidnahlamdofklamooajjnopnloljlgp
Descripción Ew, Mail! allows you to easily use a temp-mail.org mail when registering.
Tamaño del Archivo 43.18 KB
Cantidad de Instalaciones 101
Versión Actual 1.2
Última Actualización 2020-01-02
Fecha de Publicación 2019-12-30
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador vantezzen
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/vantezzen/ewmail
URL de la Página de Política de Privacidad https://hollstein.io/browserprivacy
Idiomas Soportados 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"
        }
    ]
}