C2D URL

This extension allows to dial phone numbers via configurable URLs.

Co to jest C2D URL?

C2D URL to rozszerzenie Chrome opracowane przez Daniel Weuthen, a jego główną funkcją jest „This extension allows to dial phone numbers via configurable URLs.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia C2D URL

Pobierz pliki rozszerzeń C2D URL w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa C2D URL C2D URL
ID caglkdbdnlmmonphghdpfpkmojlenehm
Oficjalny URL https://chrome.google.com/webstore/detail/c2d-url/caglkdbdnlmmonphghdpfpkmojlenehm
Opis This extension allows to dial phone numbers via configurable URLs.
Rozmiar pliku 27.5 KB
Liczba instalacji 507
Aktualna Wersja 0.9.2
Ostatnia Aktualizacja 2014-02-03
Data Publikacji 2014-02-03
Ocena 4.44/5 Łącznie 9 Oceny
Deweloper Daniel Weuthen
Typ Płatności free
Strona Rozszerzenia https://github.com/dweuthen/crx-c2d-url
Adres URL Strony Pomocy https://github.com/dweuthen/crx-c2d-url
Obsługiwane Języki 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:\/\/*\/*"
    ]
}