Bizrobe Auto Follow up

Auto email Follow Up extension for Gmail

Vad är Bizrobe Auto Follow up?

Bizrobe Auto Follow up är en Chrome-tillägg utvecklad av https://bizrobe.com, och dess huvudfunktion är "Auto email Follow Up extension for Gmail".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Bizrobe Auto Follow up-förlängningens CRX-fil

Ladda ner Bizrobe Auto Follow up-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Bizrobe Auto Follow up Bizrobe Auto Follow up
ID hepapmlnfobfldboadbapjgmgmbenehl
Officiell webbadress https://chromewebstore.google.com/detail/bizrobe-auto-follow-up/hepapmlnfobfldboadbapjgmgmbenehl
Beskrivning Auto email Follow Up extension for Gmail
Filstorlek 159 KB
Antal Installationer 34
Aktuell Version 1.2.3
Senast Uppdaterad 2023-10-21
Publiceringsdatum 2023-09-20
Betyg 5.00/5 Totalt 9 Betyg
Utvecklare https://bizrobe.com
E-post [email protected]
Betalningssätt in_app
Tilläggswebbplats https://bizrobe.com
Hjälpsida URL https://bizrobe.com/support
URL till Sekretesspolicy Sidan https://bizrobe.com/privacy
Stödda Språk 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\/*"
    ]
}