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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:\/\/*\/*"
    ]
}