C2D URL

This extension allows to dial phone numbers via configurable URLs.

Was ist C2D URL?

C2D URL ist eine Chrome-Erweiterung, die von Daniel Weuthen entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows to dial phone numbers via configurable URLs.".

Erweiterungsscreenshots

screenshot

C2D URL-Erweiterungs-CRX-Datei herunterladen

Laden Sie C2D URL-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name C2D URL C2D URL
ID caglkdbdnlmmonphghdpfpkmojlenehm
Offizielle URL https://chrome.google.com/webstore/detail/c2d-url/caglkdbdnlmmonphghdpfpkmojlenehm
Beschreibung This extension allows to dial phone numbers via configurable URLs.
Dateigröße 27.5 KB
Installationsanzahl 507
Aktuelle Version 0.9.2
Letztes Update 2014-02-03
Veröffentlichungsdatum 2014-02-03
Bewertung 4.44/5 Insgesamt 9 Bewertungen
Entwickler Daniel Weuthen
Zahlungsart free
Erweiterungswebsite https://github.com/dweuthen/crx-c2d-url
Hilfeseite URL https://github.com/dweuthen/crx-c2d-url
Unterstützte Sprachen 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:\/\/*\/*"
    ]
}