Email finder
Find all email address in the current webpage.
O que é Email finder?
Email finder é uma extensão do Chrome desenvolvida por Picsweb, e sua principal característica é "Find all email address in the current webpage.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Email finder
Baixe arquivos de extensão Email finder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Email finder |
ID | jmocamaeelacjfkmamnldjnedhkhbnip |
URL Oficial | https://chromewebstore.google.com/detail/email-finder/jmocamaeelacjfkmamnldjnedhkhbnip |
Descrição | Find all email address in the current webpage. |
Tamanho do Arquivo | 25.88 KB |
Contagem de Instalações | 34 |
Versão Atual | 2.0 |
Última Atualização | 2023-07-31 |
Data de Publicação | 2020-08-15 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | Picsweb |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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": [] } |