C2D URL

This extension allows to dial phone numbers via configurable URLs.

O que é C2D URL?

C2D URL é uma extensão do Chrome desenvolvida por Daniel Weuthen, e sua principal característica é "This extension allows to dial phone numbers via configurable URLs.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão C2D URL

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

                        Most modern VoIP phones allow to execute certain actions such as dialing or hanging up via HTTP requests. 

This C2D URL ("click to dial by URL") extension allows you to dial any number supported by your VoIP phone either by manually entering the number in the extension's popup or by simply right clicking onto a previously selected number on any website. 

If the phone even allows grabbing a screenshot of the phone's display, it will also be shown in the extension's popup. 

The current version has been successfully tested with SNOM 370 phones. Due to its generic approach, it should work with any other VoIP phone that can be controlled via HTTP requests as well.                    

Informações Básicas da Extensão

Nome C2D URL C2D URL
ID caglkdbdnlmmonphghdpfpkmojlenehm
URL Oficial https://chrome.google.com/webstore/detail/c2d-url/caglkdbdnlmmonphghdpfpkmojlenehm
Descrição This extension allows to dial phone numbers via configurable URLs.
Tamanho do Arquivo 27.5 KB
Contagem de Instalações 507
Versão Atual 0.9.2
Última Atualização 2014-02-03
Data de Publicação 2014-02-03
Classificação 4.44/5 Total de 9 Avaliações
Desenvolvedor Daniel Weuthen
Tipo de Pagamento free
Site da Extensão https://github.com/dweuthen/crx-c2d-url
URL da Página de Ajuda https://github.com/dweuthen/crx-c2d-url
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "C2D URL",
    "description": "This extension allows to dial phone numbers via configurable URLs.",
    "version": "0.9.2",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "images\/input-dialpad48.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "contextmenu.js"
        ]
    },
    "icons": {
        "16": "images\/input-dialpad16.png",
        "32": "images\/input-dialpad32.png",
        "48": "images\/input-dialpad48.png"
    },
    "permissions": [
        "",
        "tabs",
        "contextMenus",
        "webRequest",
        "webRequestBlocking",
        "background",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}