Doubletick - Email tracking for Gmail
Get whatsapp like double checkmarks when someone reads your email
Doubletick - Email tracking for Gmail란 무엇입니까?
Doubletick - Email tracking for Gmail은(는) http://heybase.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get whatsapp like double checkmarks when someone reads your email"입니다.
확장 프로그램 스크린샷
Doubletick - Email tracking for Gmail 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Free unlimited email tracking for Gmail and Google Workspace (G Suite) with real-time desktop notifications and WhatsApp like double tick marks (✓✓) in your sent box. A single blue tick ✓ indicates that an email has been sent, but yet to be opened by the recipient. Double blue ticks ✓✓ mean that your email has been opened by the recipient and grey ticks indicates that email is not tracked. - See which emails have been opened - No need to cross-check with your colleagues - Perfect for recruiters and salespeople - Eliminates guesswork - Very easy to use no learning curve FEATURES - Unlimited email tracking for Gmail and Google Workspace (G Suite). - Real-time notification when your emails are opened. - Link Tracking - No signature branding
확장 프로그램 기본 정보
이름 | |
ID | boepdaohppaalcodpbiacbcelmbkflac |
공식 URL | https://chrome.google.com/webstore/detail/doubletick-email-tracking/boepdaohppaalcodpbiacbcelmbkflac |
설명 | Get whatsapp like double checkmarks when someone reads your email |
파일 크기 | 205 KB |
설치 횟수 | 5,206 |
현재 버전 | 3.3.1 |
최근 업데이트 | 2022-05-04 |
출시 날짜 | 2017-07-25 |
평점 | 3.05/5 총 42 개의 평점 |
개발자 | http://heybase.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.heybase.io/resources/free-email-tracker |
개인정보 보호 정책 페이지 URL | https://getdoubletick.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Doubletick - Email tracking for Gmail", "description": "Get whatsapp like double checkmarks when someone reads your email", "version": "3.3.1", "icons": { "16": "dt-16.png", "48": "dt-48.png", "128": "dt-128.png" }, "browser_action": { "default_icon": { "16": "dt-16.png", "24": "dt-24.png", "32": "dt-32.png" }, "default_title": "Doubletick - Email tracking for Gmail", "default_popup": "index.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "run_at": "document_end", "all_frames": false, "js": [ "inboxsdk.js", "content.js" ] } ], "web_accessible_resources": [ "enabled.svg", "disabled.svg", "un-read.svg", "logo.png" ], "permissions": [ "storage", "notifications", "webRequest", "webRequestBlocking", "https:\/\/mail.google.com\/", "https:\/\/*.getdoubletick.com\/*", "*:\/\/*.googleusercontent.com\/*" ], "externally_connectable": { "matches": [ "https:\/\/*.getdoubletick.com\/*" ] }, "manifest_version": 2 } |