Email Export Tool
Export emails in CSV, XLSX and PDF
Email Export Tool란 무엇입니까?
Email Export Tool은(는) anantnegik7에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export emails in CSV, XLSX and PDF"입니다.
확장 프로그램 스크린샷
Email Export Tool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Google Chrome Extension will get (fetch) the data ( email id and name ) from your Gmail id. This Google Chrome Extension allows the gmail account holder to get all the customer name and email that had mailed him. This Google Chrome Extension allows the gmail account holder to export the data ( email id and name ) into CSV, JSON, Comma Separated Format. Export Format: - CSV - JSON - Comma Separated Gmail Ids Using Comma Separated Format you can mail multiple users as the email are comma separated ( Just Copy the emails and paste in compose mail option in gmail ). Using CSV Format you can download and mail to some other person. Using JSON Format you can use in API for website. Webpage: https://codeeshop.com/other/66-web-scar.html If you have any issue regarding this tool, contact us via Email : [email protected] Facebook : https://www.facebook.com/codeeshop/ We highly appreciate your suggestions and reviews! (We do not need your Gmail username or password to operate. We do not store your private information on our servers.)
확장 프로그램 기본 정보
이름 | |
ID | laeciibofligmkhkkhbonmfgbdjaiepa |
공식 URL | https://chromewebstore.google.com/detail/email-export-tool/laeciibofligmkhkkhbonmfgbdjaiepa |
설명 | Export emails in CSV, XLSX and PDF |
파일 크기 | 1.74 MB |
설치 횟수 | 310 |
현재 버전 | 2.0.0 |
최근 업데이트 | 2023-12-04 |
출시 날짜 | 2021-01-23 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | anantnegik7 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://ecodeeshop.github.io/blog/email-export-tool-chrome-extension/ |
도움말 페이지 URL | https://ecodeeshop.github.io/blog/contact/ |
개인정보 보호 정책 페이지 URL | https://codeeshop.com/page/2-privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Email Export Tool", "description": "Export emails in CSV, XLSX and PDF", "manifest_version": 3, "version": "2.0.0", "author": "Anant Negi", "background": { "service_worker": "lib\/background.js" }, "permissions": [ "activeTab", "scripting", "webNavigation", "downloads" ], "action": { "default_title": "Email Export Tool", "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon_16.png", "32": "\/images\/icon_32.png", "48": "\/images\/icon_48.png", "128": "\/images\/icon_128.png" } }, "icons": { "16": "\/images\/icon_16.png", "32": "\/images\/icon_32.png", "48": "\/images\/icon_48.png", "128": "\/images\/icon_128.png" }, "web_accessible_resources": [ { "resources": [ "images\/icon_32.png" ], "matches": [ "https:\/\/mail.google.com\/*" ] } ], "host_permissions": [ "https:\/\/mail.google.com\/" ] } |