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 |
官方網址 | 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 |
電子郵箱 | [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\/*" ] } |