Bizrobe Auto Follow up
Auto email Follow Up extension for Gmail
Bizrobe Auto Follow upとは何ですか?
Bizrobe Auto Follow upはhttps://bizrobe.comによって開発されたChromeの拡張機能で、その主な機能は「Auto email Follow Up extension for Gmail」です。
拡張機能のスクリーンショット
Bizrobe Auto Follow up拡張機能のCRXファイルをダウンロード
Bizrobe Auto Follow up拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Bizrobe is a chrome extension for following up automatically on the primary email sent through gmail. This is built to reduce the time to manually check on the sent items in email and then following up with a time interval. This helps increases productivity and can be used by Sales, HR, Marketing or any functions which uses gmail for communication. Bizrobe also provides a dashboard with analytics for the users to understand the followup patterns.
拡張機能の基本情報
名前 | Bizrobe Auto Follow up |
ID | hepapmlnfobfldboadbapjgmgmbenehl |
公式URL | https://chromewebstore.google.com/detail/bizrobe-auto-follow-up/hepapmlnfobfldboadbapjgmgmbenehl |
説明 | Auto email Follow Up extension for Gmail |
ファイルサイズ | 159 KB |
インストール数 | 34 |
現在のバージョン | 1.2.3 |
最終更新日 | 2023-10-21 |
公開日 | 2023-09-20 |
評価 | 5.00/5 合計 9 レビュー |
開発者 | https://bizrobe.com |
Eメール | [email protected] |
支払い方法 | in_app |
拡張機能のウェブサイト | https://bizrobe.com |
ヘルプページのURL | https://bizrobe.com/support |
プライバシーポリシーページのURL | https://bizrobe.com/privacy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bizrobe Auto Follow up", "description": "Auto email Follow Up extension for Gmail", "icons": { "128": "Bizrobe_Logo.png" }, "action": { "default_popup": "popup.html" }, "version": "1.2.3", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/*" ], "js": [ "contentmang.js" ] }, { "matches": [ "https:\/\/mail.google.com\/mail\/*" ], "js": [ "jquery.min.js", "gmail.js", "contentmang.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "background": { "service_worker": "serviceWorker.js" }, "permissions": [ "scripting" ], "host_permissions": [ "https:\/\/mail.google.com\/mail\/*" ] } |