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.

Wat is Max Contact Agent Extension?

Max Contact Agent Extension is een Chrome-extensie ontwikkeld door MaxContact, en de belangrijkste functie is "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.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Max Contact Agent Extension

Download Max Contact Agent Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Max Contact Agent Extension Max Contact Agent Extension
ID cpabeedodjfmfcjjpcephhpigamahmdm
Officiële URL https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm
Beschrijving 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.
Bestandsgrootte 11.3 KB
Aantal Installaties 602
Huidige Versie 1.0
Laatst Bijgewerkt 2020-03-04
Publicatiedatum 2020-03-04
Ontwikkelaar MaxContact
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://www.maxcontact.com/privacy-policy
Ondersteunde Talen 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"
    ]
}