C2D URL

This extension allows to dial phone numbers via configurable URLs.

什么是C2D URL?

C2D URL是由Daniel Weuthen开发的Chrome扩展程序,该扩展的主要功能是“This extension allows to dial phone numbers via configurable URLs.”。

扩展截图

screenshot

下载C2D URL扩展crx文件

下载C2D URL扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 C2D URL C2D URL
ID caglkdbdnlmmonphghdpfpkmojlenehm
官方URL https://chrome.google.com/webstore/detail/c2d-url/caglkdbdnlmmonphghdpfpkmojlenehm
简介 This extension allows to dial phone numbers via configurable URLs.
文件大小 27.5 KB
安装次数 507
当前版本 0.9.2
更新时间 2014-02-03
上架时间 2014-02-03
评分 4.44/5 共9次评分
开发者 Daniel Weuthen
付费类型 free
扩展官网 https://github.com/dweuthen/crx-c2d-url
帮助页面URL https://github.com/dweuthen/crx-c2d-url
支持的语言 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:\/\/*\/*"
    ]
}