Bizrobe Auto Follow up

Auto email Follow Up extension for Gmail

O que é Bizrobe Auto Follow up?

Bizrobe Auto Follow up é uma extensão do Chrome desenvolvida por https://bizrobe.com, e sua principal característica é "Auto email Follow Up extension for Gmail".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Bizrobe Auto Follow up

Baixe arquivos de extensão Bizrobe Auto Follow up no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Bizrobe Auto Follow up Bizrobe Auto Follow up
ID hepapmlnfobfldboadbapjgmgmbenehl
URL Oficial https://chromewebstore.google.com/detail/bizrobe-auto-follow-up/hepapmlnfobfldboadbapjgmgmbenehl
Descrição Auto email Follow Up extension for Gmail
Tamanho do Arquivo 159 KB
Contagem de Instalações 34
Versão Atual 1.2.3
Última Atualização 2023-10-21
Data de Publicação 2023-09-20
Classificação 5.00/5 Total de 9 Avaliações
Desenvolvedor https://bizrobe.com
Email Developer@bizrobe.com
Tipo de Pagamento in_app
Site da Extensão https://bizrobe.com
URL da Página de Ajuda https://bizrobe.com/support
URL da Página de Política de Privacidade https://bizrobe.com/privacy
Idiomas Suportados 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\/*"
    ]
}