Email Exporter
Extract all email addresses and phone numbers in a web page.
Email Exporter란 무엇입니까?
Email Exporter은(는) https://www.dummysoftware.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extract all email addresses and phone numbers in a web page."입니다.
확장 프로그램 스크린샷
Email Exporter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Extract all email addresses and phone numbers in a web page. Simple and easy web page extractor. * Extract all email addresses in a page. * Extract all phone numbers in a page. * Export results to a text file. * Copy results to clipboard. * Append captured data across pages and tabs. * Search through HTML or text of the page for contacts. * Add custom regular expressions to capture data. * Save results to a file or post them to a URL with authentication. * Quick and easy extractor! Simply click the extension icon to automatically extract all email addresses and phone numbers displayed on the current web page. Email Exporter can be configured to look in the html or the text for matching data. It can also append captured data across web pages and tabs. Check-mark the option to append, then visit multiple pages or tabs, open the extension to extract, and automatically grow your list even bigger. Then save all of the results at once! To save your results, simply export them to a text file (with the option to append to any existing results), copy them to the clipboard and paste them anywhere you want, or post them to a secure URL to process the collected data with your own API.
확장 프로그램 기본 정보
이름 | Email Exporter |
ID | ecnfbegpagpeocjegnecbifjepfcpnhe |
공식 URL | https://chromewebstore.google.com/detail/email-exporter/ecnfbegpagpeocjegnecbifjepfcpnhe |
설명 | Extract all email addresses and phone numbers in a web page. |
파일 크기 | 203 KB |
설치 횟수 | 30,946 |
현재 버전 | 2.4 |
최근 업데이트 | 2024-01-27 |
출시 날짜 | 2020-05-31 |
평점 | 3.90/5 총 59 개의 평점 |
개발자 | https://www.dummysoftware.com |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | http://dummysoftware.com/chrome-privacy.html |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Email Exporter", "version": "2.4", "manifest_version": 3, "description": "Extract all email addresses and phone numbers in a web page.", "background": { "service_worker": "scripts\/background.js" }, "action": { "default_icon": { "38": "images\/icon-38.png" }, "default_title": "Email Exporter", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_start" } ], "icons": { "48": "images\/icon-48x48.png", "128": "images\/icon-128x128.png" } } |