C2D URL

This extension allows to dial phone numbers via configurable URLs.

C2D URL là gì?

C2D URL là một tiện ích mở rộng Chrome được phát triển bởi Daniel Weuthen, và tính năng chính của nó là "This extension allows to dial phone numbers via configurable URLs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng C2D URL

Tải xuống các tệp mở rộng C2D URL dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên C2D URL C2D URL
ID caglkdbdnlmmonphghdpfpkmojlenehm
URL Chính Thức https://chrome.google.com/webstore/detail/c2d-url/caglkdbdnlmmonphghdpfpkmojlenehm
Mô tả This extension allows to dial phone numbers via configurable URLs.
Kích Thước Tệp 27.5 KB
Số Lần Cài Đặt 507
Phiên Bản Hiện Tại 0.9.2
Cập Nhật Lần Cuối 2014-02-03
Ngày Phát Hành 2014-02-03
Đánh Giá 4.44/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Daniel Weuthen
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dweuthen/crx-c2d-url
URL Trang Trợ Giúp https://github.com/dweuthen/crx-c2d-url
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}