Click2Call

Finds phone numbers in the web page you're on and allows you to call the number.

O que é Click2Call?

Click2Call é uma extensão do Chrome desenvolvida por UC Apps, e sua principal característica é "Finds phone numbers in the web page you're on and allows you to call the number.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Click2Call

Baixe arquivos de extensão Click2Call 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

                        Make a phone call by clicking a number in your browser that will connect your device of choice (webphone, desk phone, cell phone, etc.) to the call.   

Click2Call calls a number for your phone device. Start the call by clicking a number in your browser. Your device will ring first. Answer it for the call to go through. Options include selecting which device will be connected to the call, the caller ID number (in your network) that will display, and any prefixes that should precede the clicked number. 

*** Note that the Click2Call plugin is an extension of your VoIP package and will not function when used by itself.  Your administrator will provide a username, password and URL to use with Click2Call.                    

Informações Básicas da Extensão

Nome Click2Call Click2Call
ID mdpmpbnclnmnckcbpnggmjednafpecpc
URL Oficial https://chromewebstore.google.com/detail/click2call/mdpmpbnclnmnckcbpnggmjednafpecpc
Descrição Finds phone numbers in the web page you're on and allows you to call the number.
Tamanho do Arquivo 691 KB
Contagem de Instalações 981
Versão Atual 1.0.8
Última Atualização 2023-04-17
Data de Publicação 2019-04-24
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor UC Apps
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://ucapps.cloud/
URL da Página de Política de Privacidade https://ucapps.cloud/privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click2Call",
    "version": "1.0.8",
    "version_name": "1.0.8",
    "description": "Finds phone numbers in the web page you're on and allows you to call the number.",
    "icons": {
        "128": "green-icon-38.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "thirdParty\/jquery-2.2.1.min.js",
                "click2call_content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": {
        "default_name": "Click2Call",
        "default_icon": "red-icon-38.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "default-src 'none'; style-src 'self' 'unsafe-inline' https:\/\/fonts.googleapis.com; script-src 'self'; connect-src *; img-src *; font-src https:\/\/fonts.gstatic.com"
    }
}