Email finder
Find all email address in the current webpage.
¿Qué es Email finder?
Email finder es una extensión de Chrome desarrollada por Picsweb, y su función principal es "Find all email address in the current webpage.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Email finder
Descarga archivos de extensión Email finder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Email finder |
ID | jmocamaeelacjfkmamnldjnedhkhbnip |
URL Oficial | https://chromewebstore.google.com/detail/email-finder/jmocamaeelacjfkmamnldjnedhkhbnip |
Descripción | Find all email address in the current webpage. |
Tamaño del Archivo | 25.88 KB |
Cantidad de Instalaciones | 34 |
Versión Actual | 2.0 |
Última Actualización | 2023-07-31 |
Fecha de Publicación | 2020-08-15 |
Calificación | 1.00/5 Total de 1 Calificaciones |
Desarrollador | Picsweb |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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": [] } |