Bizrobe Auto Follow up

Auto email Follow Up extension for Gmail

Co to jest Bizrobe Auto Follow up?

Bizrobe Auto Follow up to rozszerzenie Chrome opracowane przez https://bizrobe.com, a jego główną funkcją jest „Auto email Follow Up extension for Gmail”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Bizrobe Auto Follow up

Pobierz pliki rozszerzeń Bizrobe Auto Follow up w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Bizrobe Auto Follow up Bizrobe Auto Follow up
ID hepapmlnfobfldboadbapjgmgmbenehl
Oficjalny URL https://chromewebstore.google.com/detail/bizrobe-auto-follow-up/hepapmlnfobfldboadbapjgmgmbenehl
Opis Auto email Follow Up extension for Gmail
Rozmiar pliku 159 KB
Liczba instalacji 34
Aktualna Wersja 1.2.3
Ostatnia Aktualizacja 2023-10-21
Data Publikacji 2023-09-20
Ocena 5.00/5 Łącznie 9 Oceny
Deweloper https://bizrobe.com
E-mail [email protected]
Typ Płatności in_app
Strona Rozszerzenia https://bizrobe.com
Adres URL Strony Pomocy https://bizrobe.com/support
Adres URL Strony Polityki Prywatności https://bizrobe.com/privacy
Obsługiwane Języki 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\/*"
    ]
}