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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" ] } |