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.

什么是Max Contact Agent Extension?

Max Contact Agent Extension是由MaxContact开发的Chrome扩展程序,该扩展的主要功能是“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.”。

扩展截图

screenshot

下载Max Contact Agent Extension扩展crx文件

下载Max Contact Agent Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Max Contact Agent Extension Max Contact Agent Extension
ID cpabeedodjfmfcjjpcephhpigamahmdm
官方URL https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm
简介 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.
文件大小 11.3 KB
安装次数 602
当前版本 1.0
更新时间 2020-03-04
上架时间 2020-03-04
开发者 MaxContact
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://www.maxcontact.com/privacy-policy
支持的语言 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"
    ]
}