Grandstream Wave Click2Dial

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

Cos'è Grandstream Wave Click2Dial?

Grandstream Wave Click2Dial è un'estensione di Chrome sviluppata da https://grandstream.com, e la sua funzione principale è "This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Grandstream Wave Click2Dial

Scarica i file di estensione Grandstream Wave Click2Dial in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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 .                    

Informazioni di Base sull'Estensione

Nome Grandstream Wave Click2Dial Grandstream Wave Click2Dial
ID jmphnnnhjeigmcgilgifhjnkelemfdfc
URL Ufficiale https://chromewebstore.google.com/detail/grandstream-wave-click2di/jmphnnnhjeigmcgilgifhjnkelemfdfc
Descrizione This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.
Dimensione del File 75.05 KB
Conteggio Installazioni 1,728
Versione Corrente 1.0.11.7
Ultimo Aggiornamento 2023-11-02
Data di Pubblicazione 2021-11-16
Valutazione 1.33/5 Totale 3 Valutazioni
Sviluppatore https://grandstream.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.grandstream.com/
URL della Pagina di Aiuto https://www.grandstream.com/support
URL della Pagina della Politica sulla Privacy http://www.ipvideotalk.com/privacy-policy.html
Lingue Supportate 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"
}