Max Contact Agent Extension

Forces the browser to the front of the screen when the user is in a Not Ready or Dispositioning status and there is a call in queue.

O que é Max Contact Agent Extension?

Max Contact Agent Extension é uma extensão do Chrome desenvolvida por MaxContact, e sua principal característica é "Forces the browser to the front of the screen when the user is in a Not Ready or Dispositioning status and there is a call in queue.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Max Contact Agent Extension

Baixe arquivos de extensão Max Contact Agent Extension 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

                        Plugin for Max Contact to allow the browser to be pulled into the agent view when a call is in queue.                    

Informações Básicas da Extensão

Nome Max Contact Agent Extension Max Contact Agent Extension
ID cpabeedodjfmfcjjpcephhpigamahmdm
URL Oficial https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm
Descrição Forces the browser to the front of the screen when the user is in a Not Ready or Dispositioning status and there is a call in queue.
Tamanho do Arquivo 11.3 KB
Contagem de Instalações 602
Versão Atual 1.0
Última Atualização 2020-03-04
Data de Publicação 2020-03-04
Desenvolvedor MaxContact
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://www.maxcontact.com/privacy-policy
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Max Contact Agent Extension",
    "description": "Forces the browser to the front of the screen when the user is in a Not Ready or Dispositioning status and there is a call in queue.",
    "version": "1.0",
    "browser_action": {
        "default_title": "Max Contact Agent Extension",
        "default_icon": "icon.png"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.maxcontact.com\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.maxcontact.com\/*",
                "*:\/\/localhost\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent",
        "webNavigation",
        "notifications",
        "tabs"
    ]
}