Bizrobe Auto Follow up

Auto email Follow Up extension for Gmail

What is Bizrobe Auto Follow up?

Bizrobe Auto Follow up is a Chrome extension developed by https://bizrobe.com, and its main feature is "Auto email Follow Up extension for Gmail".

Extension Screenshots

screenshot
screenshot
screenshot

Download Bizrobe Auto Follow up Extension CRX File

Download Bizrobe Auto Follow up extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Bizrobe Auto Follow up Bizrobe Auto Follow up
ID hepapmlnfobfldboadbapjgmgmbenehl
Official URL https://chromewebstore.google.com/detail/bizrobe-auto-follow-up/hepapmlnfobfldboadbapjgmgmbenehl
Description Auto email Follow Up extension for Gmail
File Size 159 KB
Installation Count 34
Current Version 1.2.3
Last Updated 2023-10-21
Publish Date 2023-09-20
Rating 5.00/5 Total 9 Ratings
Developer https://bizrobe.com
Email [email protected]
Payment Type in_app
Extension Website https://bizrobe.com
Help Page URL https://bizrobe.com/support
Privacy Policy Page URL https://bizrobe.com/privacy
Supported Languages 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\/*"
    ]
}