Click to call

Detects telephone numbers on any web page, and turns them into clickable links. An account with an Enswitch provider running…

O que é Click to call?

Click to call é uma extensão do Chrome desenvolvida por https://integrics.com, e sua principal característica é "Detects telephone numbers on any web page, and turns them into clickable links. An account with an Enswitch provider running…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Click to call

Baixe arquivos de extensão Click to call 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

                        Detects telephone numbers on any web page, and turns them into clickable links.

An account with an Enswitch provider running Enswitch 3.13 or later is required.                    

Informações Básicas da Extensão

Nome Click to call Click to call
ID oaogeindmfedfacmlioeinkoopbadapm
URL Oficial https://chromewebstore.google.com/detail/click-to-call/oaogeindmfedfacmlioeinkoopbadapm
Descrição Detects telephone numbers on any web page, and turns them into clickable links. An account with an Enswitch provider running…
Tamanho do Arquivo 220 KB
Contagem de Instalações 297
Versão Atual 1.0.13
Última Atualização 2022-09-10
Data de Publicação 2017-02-08
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://integrics.com
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://integrics.com/privacy/clients
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Click to call",
    "version": "1.0.13",
    "icons": {
        "16": "images\/icon16.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "mutation-summary.js",
                "jquery-3.1.0.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "action": {
        "default_icon": "images\/icon128.png",
        "default_title": ""
    },
    "background": {
        "service_worker": "bg.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/phone.png",
                "images\/universal_link.gif",
                "options.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}