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
官方網址 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"
    ]
}