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ファイルをダウンロード
Doubletick - Email tracking for Gmail拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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 } |