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.

Vad är Max Contact Agent Extension?

Max Contact Agent Extension är en Chrome-tillägg utvecklad av MaxContact, och dess huvudfunktion är "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.".

Tilläggsskärmbilder

screenshot

Ladda ner Max Contact Agent Extension-förlängningens CRX-fil

Ladda ner Max Contact Agent Extension-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

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

Grundläggande Information om Tillägg

Namn Max Contact Agent Extension Max Contact Agent Extension
ID cpabeedodjfmfcjjpcephhpigamahmdm
Officiell webbadress https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm
Beskrivning 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.
Filstorlek 11.3 KB
Antal Installationer 602
Aktuell Version 1.0
Senast Uppdaterad 2020-03-04
Publiceringsdatum 2020-03-04
Utvecklare MaxContact
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://www.maxcontact.com/privacy-policy
Stödda Språk 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"
    ]
}