Grandstream Wave Click2Dial

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

Co to jest Grandstream Wave Click2Dial?

Grandstream Wave Click2Dial to rozszerzenie Chrome opracowane przez https://grandstream.com, a jego główną funkcją jest „This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Grandstream Wave Click2Dial

Pobierz pliki rozszerzeń Grandstream Wave Click2Dial w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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 .                    

Podstawowe informacje o rozszerzeniu

Nazwa Grandstream Wave Click2Dial Grandstream Wave Click2Dial
ID jmphnnnhjeigmcgilgifhjnkelemfdfc
Oficjalny URL https://chromewebstore.google.com/detail/grandstream-wave-click2di/jmphnnnhjeigmcgilgifhjnkelemfdfc
Opis This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.
Rozmiar pliku 75.05 KB
Liczba instalacji 1,728
Aktualna Wersja 1.0.11.7
Ostatnia Aktualizacja 2023-11-02
Data Publikacji 2021-11-16
Ocena 1.33/5 Łącznie 3 Oceny
Deweloper https://grandstream.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.grandstream.com/
Adres URL Strony Pomocy https://www.grandstream.com/support
Adres URL Strony Polityki Prywatności http://www.ipvideotalk.com/privacy-policy.html
Obsługiwane Języki 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"
}