Bizrobe Auto Follow up

Auto email Follow Up extension for Gmail

Cos'è Bizrobe Auto Follow up?

Bizrobe Auto Follow up è un'estensione di Chrome sviluppata da https://bizrobe.com, e la sua funzione principale è "Auto email Follow Up extension for Gmail".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Bizrobe Auto Follow up

Scarica i file di estensione Bizrobe Auto Follow up in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Bizrobe Auto Follow up Bizrobe Auto Follow up
ID hepapmlnfobfldboadbapjgmgmbenehl
URL Ufficiale https://chromewebstore.google.com/detail/bizrobe-auto-follow-up/hepapmlnfobfldboadbapjgmgmbenehl
Descrizione Auto email Follow Up extension for Gmail
Dimensione del File 159 KB
Conteggio Installazioni 34
Versione Corrente 1.2.3
Ultimo Aggiornamento 2023-10-21
Data di Pubblicazione 2023-09-20
Valutazione 5.00/5 Totale 9 Valutazioni
Sviluppatore https://bizrobe.com
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://bizrobe.com
URL della Pagina di Aiuto https://bizrobe.com/support
URL della Pagina della Politica sulla Privacy https://bizrobe.com/privacy
Lingue Supportate 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\/*"
    ]
}