Advanced Email Extractor
It will extract emails from every page, also can check other urls being on given website.
Co je Advanced Email Extractor?
Advanced Email Extractor je rozšíření Chrome vyvinuté VROCode, a jeho hlavní funkcí je „It will extract emails from every page, also can check other urls being on given website.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Advanced Email Extractor
Stáhněte si soubory rozšíření Advanced Email Extractor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
You can install this extension if you really need simple, advanced email extractor. v1.00 allows user to: - Extract emails from given urls and their subpages manually/automatically - Export extracted data to CSV/JSON - Save URL's/emails in popup, no text documents needed
Základní Informace o Rozšíření
Název | Advanced Email Extractor |
ID | aefemadfofahncgjoildefkfdamnlfbd |
Oficiální URL | https://chromewebstore.google.com/detail/advanced-email-extractor/aefemadfofahncgjoildefkfdamnlfbd |
Popis | It will extract emails from every page, also can check other urls being on given website. |
Velikost souboru | 9.28 KB |
Počet instalací | 191 |
Aktuální Verze | 1.00 |
Poslední Aktualizace | 2021-01-21 |
Datum Vydání | 2021-01-21 |
Vývojář | VROCode |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Advanced Email Extractor", "short_name": "AEE", "description": "It will extract emails from every page, also can check other urls being on given website.", "version": "1.00", "icons": { "48": "assets\/vrocode.png", "32": "assets\/vrocode.png", "16": "assets\/vrocode.png" }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "backend.js" ] }, "browser_action": { "default_title": ":)", "default_popup": "popup.html", "default_icon": "assets\/vrocode.png" } } |