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 - это расширение Chrome, разработанное MaxContact, и его основная функция - "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

Скачать файл CRX расширения Max Contact Agent Extension

Скачайте файлы расширений 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"
    ]
}