Email finder
Find all email address in the current webpage.
Co je Email finder?
Email finder je rozšíření Chrome vyvinuté Picsweb, a jeho hlavní funkcí je „Find all email address in the current webpage.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Email finder
Stáhněte si soubory rozšíření Email finder 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í
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.
Základní Informace o Rozšíření
Název | Email finder |
ID | jmocamaeelacjfkmamnldjnedhkhbnip |
Oficiální URL | https://chromewebstore.google.com/detail/email-finder/jmocamaeelacjfkmamnldjnedhkhbnip |
Popis | Find all email address in the current webpage. |
Velikost souboru | 25.88 KB |
Počet instalací | 34 |
Aktuální Verze | 2.0 |
Poslední Aktualizace | 2023-07-31 |
Datum Vydání | 2020-08-15 |
Hodnocení | 1.00/5 Celkem 1 Hodnocení |
Vývojář | Picsweb |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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": [] } |