Advanced Email Extractor
It will extract emails from every page, also can check other urls being on given website.
Cos'è Advanced Email Extractor?
Advanced Email Extractor è un'estensione di Chrome sviluppata da VROCode, e la sua funzione principale è "It will extract emails from every page, also can check other urls being on given website.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Advanced Email Extractor
Scarica i file di estensione Advanced Email Extractor 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
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
Informazioni di Base sull'Estensione
Nome | Advanced Email Extractor |
ID | aefemadfofahncgjoildefkfdamnlfbd |
URL Ufficiale | https://chromewebstore.google.com/detail/advanced-email-extractor/aefemadfofahncgjoildefkfdamnlfbd |
Descrizione | It will extract emails from every page, also can check other urls being on given website. |
Dimensione del File | 9.28 KB |
Conteggio Installazioni | 191 |
Versione Corrente | 1.00 |
Ultimo Aggiornamento | 2021-01-21 |
Data di Pubblicazione | 2021-01-21 |
Sviluppatore | VROCode |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |