Email finder
Find all email address in the current webpage.
Wat is Email finder?
Email finder is een Chrome-extensie ontwikkeld door Picsweb, en de belangrijkste functie is "Find all email address in the current webpage.".
Extensie Screenshots
Download het CRX-bestand van de extensie Email finder
Download Email finder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Email finder |
ID | jmocamaeelacjfkmamnldjnedhkhbnip |
Officiële URL | https://chromewebstore.google.com/detail/email-finder/jmocamaeelacjfkmamnldjnedhkhbnip |
Beschrijving | Find all email address in the current webpage. |
Bestandsgrootte | 25.88 KB |
Aantal Installaties | 34 |
Huidige Versie | 2.0 |
Laatst Bijgewerkt | 2023-07-31 |
Publicatiedatum | 2020-08-15 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Picsweb |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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": [] } |