Voicespin

Agent Panel

Что такое Voicespin?

Voicespin - это расширение Chrome, разработанное Voicespin, и его основная функция - "Agent Panel".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Voicespin

Скачайте файлы расширений Voicespin в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The VoiceSpin Chrome extension is part of VoiceSpin’s omnichannel communication platform for contact centers.

The extension is seamlessly integrated with the VoiceSpin’s Agent Panel and allows you to receive inbound calls regardless of which browser tab you are on and make outbound calls directly from your browser by leveraging click-to-call.

To use the extension, you need to be a user of the VoiceSpin contact center and configure the extension according to the provided instructions.                    

Основная информация о расширении

Название Voicespin Voicespin
ID amigkngadiegjleemmdgpfoigjllangi
Официальный URL https://chromewebstore.google.com/detail/voicespin/amigkngadiegjleemmdgpfoigjllangi
Описание Agent Panel
Размер файла 2.18 MB
Количество установок 97
Текущая Версия 1.0
Последнее Обновление 2023-06-18
Дата публикации 2023-06-18
Рейтинг 4.50/5 Всего 2 оценок
Разработчик Voicespin
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.voicespin.com/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Voicespin",
    "description": "Agent Panel",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "24": "assets\/images\/phone-24.png"
        },
        "default_title": "Voicespin",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "icons": {
                "16": "assets\/images\/phone-round.png"
            }
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/images\/phone-round.png"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "permissions": [
        "storage"
    ]
}