C2D URL

This extension allows to dial phone numbers via configurable URLs.

ما هو C2D URL؟

C2D URL هو إضافة Chrome تم تطويرها بواسطة Daniel Weuthen، والميزة الرئيسية لها هي "This extension allows to dial phone numbers via configurable URLs.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة C2D URL

قم بتنزيل ملفات الامتداد C2D URL بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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:\/\/*\/*"
    ]
}