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
Eメール [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"
    ]
}