C2D URL

This extension allows to dial phone numbers via configurable URLs.

Qu'est-ce que C2D URL ?

C2D URL est une extension Chrome développée par Daniel Weuthen, et sa fonction principale est "This extension allows to dial phone numbers via configurable URLs.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension C2D URL

Téléchargez les fichiers d'extension C2D URL au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom C2D URL C2D URL
ID caglkdbdnlmmonphghdpfpkmojlenehm
URL Officiel https://chrome.google.com/webstore/detail/c2d-url/caglkdbdnlmmonphghdpfpkmojlenehm
Description This extension allows to dial phone numbers via configurable URLs.
Taille du Fichier 27.5 KB
Nombre d'Installations 507
Version Actuelle 0.9.2
Dernière Mise à Jour 2014-02-03
Date de Publication 2014-02-03
Évaluation 4.44/5 Total 9 Évaluations
Développeur Daniel Weuthen
Type de Paiement free
Site Web de l'Extension https://github.com/dweuthen/crx-c2d-url
URL de la Page d'Aide https://github.com/dweuthen/crx-c2d-url
Langues Prises en Charge 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:\/\/*\/*"
    ]
}