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”。

扩展截图

screenshot
screenshot
screenshot

下载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 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
电子邮箱 [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\/*"
    ]
}