Email finder

Find all email address in the current webpage.

Cos'è Email finder?

Email finder è un'estensione di Chrome sviluppata da Picsweb, e la sua funzione principale è "Find all email address in the current webpage.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Email finder

Scarica i file di estensione Email finder 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

                        Easily find any email address from a web page. Visit any website and click on the extension button to get the list of email. Copy the emails from the popup box.                    

Informazioni di Base sull'Estensione

Nome Email finder Email finder
ID jmocamaeelacjfkmamnldjnedhkhbnip
URL Ufficiale https://chromewebstore.google.com/detail/email-finder/jmocamaeelacjfkmamnldjnedhkhbnip
Descrizione Find all email address in the current webpage.
Dimensione del File 25.88 KB
Conteggio Installazioni 34
Versione Corrente 2.0
Ultimo Aggiornamento 2023-07-31
Data di Pubblicazione 2020-08-15
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore Picsweb
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Email finder",
    "description": "Find all email address in the current webpage.",
    "version": "2.0",
    "background": {
        "scripts": [
            "back.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Email finder",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "all_frames": false,
            "js": [
                "pop.js"
            ]
        }
    ],
    "permissions": []
}