Email Auto Extractor

Extract, automatically all email in a web page

Was ist Email Auto Extractor?

Email Auto Extractor ist eine Chrome-Erweiterung, die von Nicolas Grillet entwickelt wurde, und ihr Hauptmerkmal ist "Extract, automatically all email in a web page".

Erweiterungsscreenshots

screenshot
screenshot

Email Auto Extractor-Erweiterungs-CRX-Datei herunterladen

Laden Sie Email Auto Extractor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Auto extract all email adresses in a web page.

You just have to go on a webpage that contains email adresses and the extension show you how many email adresses it find, and then click on the logo to copy all email adresses.                    

Grundlegende Informationen zur Erweiterung

Name Email Auto Extractor Email Auto Extractor
ID blkpobilpealkkcibgcgfmflneafkkah
Offizielle URL https://chrome.google.com/webstore/detail/email-auto-extractor/blkpobilpealkkcibgcgfmflneafkkah
Beschreibung Extract, automatically all email in a web page
Dateigröße 186 KB
Installationsanzahl 996
Aktuelle Version 0.2.0
Letztes Update 2018-06-12
Veröffentlichungsdatum 2018-06-12
Bewertung 3.47/5 Insgesamt 57 Bewertungen
Entwickler Nicolas Grillet
E-Mail [email protected]
Zahlungsart in_store
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Email Extraction !"
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Extract, automatically all email in a web page",
    "homepage_url": "http:\/\/www.erreurs404.net",
    "icons": {
        "128": "icons\/icon128.png",
        "16": "icons\/icon16.png",
        "256": "icons\/icon256.png",
        "48": "icons\/icon48.png"
    },
    "short_name": "Email Extractor",
    "manifest_version": 2,
    "name": "Email Auto Extractor",
    "offline_enabled": true,
    "permissions": [
        "chrome:\/\/favicon\/",
        "contextMenus",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs",
        "storage",
        "activeTab"
    ],
    "version": "0.2.0"
}