Bizrobe Auto Follow up

Auto email Follow Up extension for Gmail

Was ist Bizrobe Auto Follow up?

Bizrobe Auto Follow up ist eine Chrome-Erweiterung, die von https://bizrobe.com entwickelt wurde, und ihr Hauptmerkmal ist "Auto email Follow Up extension for Gmail".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Bizrobe Auto Follow up-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bizrobe Auto Follow up-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Bizrobe Auto Follow up Bizrobe Auto Follow up
ID hepapmlnfobfldboadbapjgmgmbenehl
Offizielle URL https://chromewebstore.google.com/detail/bizrobe-auto-follow-up/hepapmlnfobfldboadbapjgmgmbenehl
Beschreibung Auto email Follow Up extension for Gmail
Dateigröße 159 KB
Installationsanzahl 34
Aktuelle Version 1.2.3
Letztes Update 2023-10-21
Veröffentlichungsdatum 2023-09-20
Bewertung 5.00/5 Insgesamt 9 Bewertungen
Entwickler https://bizrobe.com
E-Mail [email protected]
Zahlungsart in_app
Erweiterungswebsite https://bizrobe.com
Hilfeseite URL https://bizrobe.com/support
URL der Datenschutzrichtlinien-Seite https://bizrobe.com/privacy
Unterstützte Sprachen 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\/*"
    ]
}