Advanced Email Extractor
It will extract emails from every page, also can check other urls being on given website.
Advanced Email Extractor란 무엇입니까?
Advanced Email Extractor은(는) VROCode에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "It will extract emails from every page, also can check other urls being on given website."입니다.
확장 프로그램 스크린샷
Advanced Email Extractor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You can install this extension if you really need simple, advanced email extractor. v1.00 allows user to: - Extract emails from given urls and their subpages manually/automatically - Export extracted data to CSV/JSON - Save URL's/emails in popup, no text documents needed
확장 프로그램 기본 정보
이름 | Advanced Email Extractor |
ID | aefemadfofahncgjoildefkfdamnlfbd |
공식 URL | https://chromewebstore.google.com/detail/advanced-email-extractor/aefemadfofahncgjoildefkfdamnlfbd |
설명 | It will extract emails from every page, also can check other urls being on given website. |
파일 크기 | 9.28 KB |
설치 횟수 | 191 |
현재 버전 | 1.00 |
최근 업데이트 | 2021-01-21 |
출시 날짜 | 2021-01-21 |
개발자 | VROCode |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Advanced Email Extractor", "short_name": "AEE", "description": "It will extract emails from every page, also can check other urls being on given website.", "version": "1.00", "icons": { "48": "assets\/vrocode.png", "32": "assets\/vrocode.png", "16": "assets\/vrocode.png" }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "backend.js" ] }, "browser_action": { "default_title": ":)", "default_popup": "popup.html", "default_icon": "assets\/vrocode.png" } } |