Grandstream Wave Click2Dial

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

O que é Grandstream Wave Click2Dial?

Grandstream Wave Click2Dial é uma extensão do Chrome desenvolvida por https://grandstream.com, e sua principal característica é "This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Grandstream Wave Click2Dial

Baixe arquivos de extensão Grandstream Wave Click2Dial no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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 .                    

Informações Básicas da Extensão

Nome Grandstream Wave Click2Dial Grandstream Wave Click2Dial
ID jmphnnnhjeigmcgilgifhjnkelemfdfc
URL Oficial https://chromewebstore.google.com/detail/grandstream-wave-click2di/jmphnnnhjeigmcgilgifhjnkelemfdfc
Descrição This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.
Tamanho do Arquivo 75.05 KB
Contagem de Instalações 1,728
Versão Atual 1.0.11.7
Última Atualização 2023-11-02
Data de Publicação 2021-11-16
Classificação 1.33/5 Total de 3 Avaliações
Desenvolvedor https://grandstream.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.grandstream.com/
URL da Página de Ajuda https://www.grandstream.com/support
URL da Página de Política de Privacidade http://www.ipvideotalk.com/privacy-policy.html
Idiomas Suportados 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"
}