Click to Dial

Make phone numbers on any page click to dial.

Click to Dial là gì?

Click to Dial là một tiện ích mở rộng Chrome được phát triển bởi Vodia Networks Inc., và tính năng chính của nó là "Make phone numbers on any page click to dial.".

Ả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 Click to Dial

Tải xuống các tệp mở rộng Click to Dial 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

                        You can dial a number directly from a web page by selecting it and right clicking it to make either a webrtc call or a call through your desktop sip phone                    

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

Tên Click to Dial Click to Dial
ID fjoflheglodmbjfgbhfamglcimbedoff
URL Chính Thức https://chromewebstore.google.com/detail/click-to-dial/fjoflheglodmbjfgbhfamglcimbedoff
Mô tả Make phone numbers on any page click to dial.
Kích Thước Tệp 49.98 KB
Số Lần Cài Đặt 431
Phiên Bản Hiện Tại 3.0
Cập Nhật Lần Cuối 2020-05-28
Ngày Phát Hành 2020-05-27
Nhà Phát Triển Vodia Networks Inc.
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://vodia.com
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Click to Dial",
    "short_name": "clicktodial",
    "version": "3.0",
    "description": "Make phone numbers on any page click to dial.",
    "browser_action": {
        "name": "Click to Dial",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png",
        "default_popup": "settings.htm"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.2.1.min.js",
                "clicktodial.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.png"
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}