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.

Co je Max Contact Agent Extension?

Max Contact Agent Extension je rozšíření Chrome vyvinuté MaxContact, a jeho hlavní funkcí je „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.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Max Contact Agent Extension

Stáhněte si soubory rozšíření Max Contact Agent Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Max Contact Agent Extension Max Contact Agent Extension
ID cpabeedodjfmfcjjpcephhpigamahmdm
Oficiální URL https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm
Popis 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.
Velikost souboru 11.3 KB
Počet instalací 602
Aktuální Verze 1.0
Poslední Aktualizace 2020-03-04
Datum Vydání 2020-03-04
Vývojář MaxContact
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://www.maxcontact.com/privacy-policy
Podporované Jazyky 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"
    ]
}