Codersera Email Finder
Find whether email exist or not
什麼是Codersera Email Finder?
Codersera Email Finder是由Codersera開發的Chrome擴展程式,該擴展的主要功能是“Find whether email exist or not”。
擴展截圖
下載Codersera Email Finder擴展crx文件
下載Codersera Email Finder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | |
ID | linlknogogkgbpkeaoigkeicamkpijph |
官方網址 | https://chrome.google.com/webstore/detail/codersera-email-finder/linlknogogkgbpkeaoigkeicamkpijph |
簡介 | Find whether email exist or not |
檔案大小 | 138 KB |
安裝次數 | 146 |
目前版本 | 1.2 |
更新時間 | 2019-10-15 |
上架時間 | 2019-10-15 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Codersera |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://codersera.com/email-finder |
說明頁面URL | https://codersera.com/email-finder |
隱私政策頁面URL | https://codersera.com/privacy-policy |
支援的語言 | 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" ] } |