FortiVoice Click-to-dial

Initiate calls with FortiVoice from Chrome.

Что такое FortiVoice Click-to-dial?

FortiVoice Click-to-dial - это расширение Chrome, разработанное FortiVoice, и его основная функция - "Initiate calls with FortiVoice from Chrome.".

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

screenshot

Скачать файл CRX расширения FortiVoice Click-to-dial

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

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

                        FortiVoice Click-to-dial works with in conjunction with your FortiVoice Enterprise phone system to allow you select a phone number from a website and automatically call the party using your phone system extension.                    

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

Название FortiVoice Click-to-dial FortiVoice Click-to-dial
ID hnkgbaajmjmmlpfbemelmppaefelmbko
Официальный URL https://chromewebstore.google.com/detail/fortivoice-click-to-dial/hnkgbaajmjmmlpfbemelmppaefelmbko
Описание Initiate calls with FortiVoice from Chrome.
Размер файла 81.79 KB
Количество установок 338
Текущая Версия 1.0.10
Последнее Обновление 2023-02-11
Дата публикации 2019-10-30
Рейтинг 3.14/5 Всего 7 оценок
Разработчик FortiVoice
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://www.fortivoice.com
URL страницы политики конфиденциальности https://www.fortinet.com/corporate/about-us/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FortiVoice Click-to-dial",
    "version": "1.0.10",
    "description": "Initiate calls with FortiVoice from Chrome.",
    "manifest_version": 3,
    "icons": {
        "128": "images\/fv_corner_icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "options_ui": {
        "page": "views\/options.html"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/phone_blue.png",
                "styles\/contentStyle.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/fv_corner_icon_128.png",
        "default_popup": "views\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*.htm",
                "file:\/\/\/*.html"
            ],
            "css": [
                "styles\/contentStyle.css"
            ],
            "js": [
                "scripts\/libphonenumber-max.min.js",
                "scripts\/util.js",
                "scripts\/requestUtil.js",
                "scripts\/content.js"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self",
        "worker-src": "self"
    }
}