Bizrobe Auto Follow up

Auto email Follow Up extension for Gmail

Hvad er Bizrobe Auto Follow up?

Bizrobe Auto Follow up er en Chrome-udvidelse udviklet af https://bizrobe.com, og dens hovedfunktion er "Auto email Follow Up extension for Gmail".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Bizrobe Auto Follow up-udvidelses-CRX-fil

Download Bizrobe Auto Follow up-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Bizrobe Auto Follow up Bizrobe Auto Follow up
ID hepapmlnfobfldboadbapjgmgmbenehl
Officiel URL https://chromewebstore.google.com/detail/bizrobe-auto-follow-up/hepapmlnfobfldboadbapjgmgmbenehl
Beskrivelse Auto email Follow Up extension for Gmail
Filstørrelse 159 KB
Antal Installationer 34
Nuværende Version 1.2.3
Senest Opdateret 2023-10-21
Udgivelsesdato 2023-09-20
Bedømmelse 5.00/5 Samlet 9 Bedømmelser
Udvikler https://bizrobe.com
E-mail [email protected]
Betalingsmetode in_app
Udvidelseswebsted https://bizrobe.com
Hjælpeside-URL https://bizrobe.com/support
URL til Fortrolighedspolitik Side https://bizrobe.com/privacy
Understøttede Sprog 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\/*"
    ]
}