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.

What is Max Contact Agent Extension?

Max Contact Agent Extension is a Chrome extension developed by MaxContact, and its main feature 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.".

Extension Screenshots

screenshot

Download Max Contact Agent Extension Extension CRX File

Download Max Contact Agent Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Max Contact Agent Extension Max Contact Agent Extension
ID cpabeedodjfmfcjjpcephhpigamahmdm
Official URL https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm
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.
File Size 11.3 KB
Installation Count 602
Current Version 1.0
Last Updated 2020-03-04
Publish Date 2020-03-04
Developer MaxContact
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.maxcontact.com/privacy-policy
Supported Languages 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"
    ]
}