Advanced Email Extractor
It will extract emails from every page, also can check other urls being on given website.
What is Advanced Email Extractor?
Advanced Email Extractor is a Chrome extension developed by VROCode, and its main feature is "It will extract emails from every page, also can check other urls being on given website.".
Extension Screenshots
Download Advanced Email Extractor Extension CRX File
Download Advanced Email Extractor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Advanced Email Extractor |
ID | aefemadfofahncgjoildefkfdamnlfbd |
Official URL | https://chromewebstore.google.com/detail/advanced-email-extractor/aefemadfofahncgjoildefkfdamnlfbd |
Description | It will extract emails from every page, also can check other urls being on given website. |
File Size | 9.28 KB |
Installation Count | 191 |
Current Version | 1.00 |
Last Updated | 2021-01-21 |
Publish Date | 2021-01-21 |
Developer | VROCode |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |