Grandstream Wave Click2Dial

This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.

Что такое Grandstream Wave Click2Dial?

Grandstream Wave Click2Dial - это расширение Chrome, разработанное https://grandstream.com, и его основная функция - "This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.".

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

screenshot

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

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

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

                        If the users want to make a quick call with Grandstream Wave on the browser page , they can install the extension. The extension will check the phone number on the browsing page and add a hyperlink once phone number detected. The users can click the phone number and launch the Grandstream Wave to make a call .                    

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

Название Grandstream Wave Click2Dial Grandstream Wave Click2Dial
ID jmphnnnhjeigmcgilgifhjnkelemfdfc
Официальный URL https://chromewebstore.google.com/detail/grandstream-wave-click2di/jmphnnnhjeigmcgilgifhjnkelemfdfc
Описание This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.
Размер файла 75.05 KB
Количество установок 1,728
Текущая Версия 1.0.11.7
Последнее Обновление 2023-11-02
Дата публикации 2021-11-16
Рейтинг 1.33/5 Всего 3 оценок
Разработчик https://grandstream.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.grandstream.com/
URL страницы помощи https://www.grandstream.com/support
URL страницы политики конфиденциальности http://www.ipvideotalk.com/privacy-policy.html
Поддерживаемые языки en
manifest.json
{
    "name": "Grandstream Wave Click2Dial",
    "description": "This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.",
    "version": "1.0.11.7",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "96": "icon96.png",
            "128": "icon128.png"
        },
        "default_title": "Wave"
    },
    "icons": {
        "16": "icon16.png",
        "96": "icon96.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "open_in_tab": false,
        "page": "options.html"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "background"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "short_name": "Wave",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}