Codersera Email Finder
Find whether email exist or not
O que é Codersera Email Finder?
Codersera Email Finder é uma extensão do Chrome desenvolvida por Codersera, e sua principal característica é "Find whether email exist or not".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Codersera Email Finder
Baixe arquivos de extensão Codersera 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
This extension extends the functionalities of Codersera email finder It can tell you if a matching email is found matching the search queries. Just enter the first name, last name and domain to find the email ID's Watch this video to know more https://www.youtube.com/watch?v=wBFYAylvsCA Visit this link to find emails: https://codersera.com/email-finder This is a free extension through which you can : -Find business emails in no time -Find whether email exists or not -Find business emails for free in no time. -Compatible with any chromium based browser(Google Chrome, Microsoft Edge, Opera, Brave, etc). version: 1.1
Informações Básicas da Extensão
Nome | |
ID | linlknogogkgbpkeaoigkeicamkpijph |
URL Oficial | https://chrome.google.com/webstore/detail/codersera-email-finder/linlknogogkgbpkeaoigkeicamkpijph |
Descrição | Find whether email exist or not |
Tamanho do Arquivo | 138 KB |
Contagem de Instalações | 146 |
Versão Atual | 1.2 |
Última Atualização | 2019-10-15 |
Data de Publicação | 2019-10-15 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Codersera |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://codersera.com/email-finder |
URL da Página de Ajuda | https://codersera.com/email-finder |
URL da Página de Política de Privacidade | https://codersera.com/privacy-policy |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Codersera Email Finder", "short_name": "Email Finder", "description": "Find whether email exist or not", "version": "1.2", "permissions": [ "tabs", "webNavigation", "https:\/\/www.google.com\/" ], "browser_action": { "default_icon": "icon16.png", "default_popup": "popup.html", "default_title": "Email-finder" }, "manifest_version": 2, "background": { "scripts": [ ".\/js\/axios.js", ".\/js\/background.js" ], "persistent": false }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/codersera.com\/*", "http:\/\/codersera.com\/*", "http:\/\/localhost:4000\/email-finder", "http:\/\/localhost:4200\/email-finder" ], "js": [ ".\/js\/content.js" ], "css": [ ".\/css\/content.css" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';", "web_accessible_resources": [ "js\/inject.js" ] } |