Email finder

Find all email address in the current webpage.

Qu'est-ce que Email finder ?

Email finder est une extension Chrome développée par Picsweb, et sa fonction principale est "Find all email address in the current webpage.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Email finder

Téléchargez les fichiers d'extension Email finder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Email finder Email finder
ID jmocamaeelacjfkmamnldjnedhkhbnip
URL Officiel https://chromewebstore.google.com/detail/email-finder/jmocamaeelacjfkmamnldjnedhkhbnip
Description Find all email address in the current webpage.
Taille du Fichier 25.88 KB
Nombre d'Installations 34
Version Actuelle 2.0
Dernière Mise à Jour 2023-07-31
Date de Publication 2020-08-15
Évaluation 1.00/5 Total 1 Évaluations
Développeur Picsweb
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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": []
}