Click2Call

Finds phone numbers in the web page you're on and allows you to call the number.

Click2Call là gì?

Click2Call là một tiện ích mở rộng Chrome được phát triển bởi UC Apps, và tính năng chính của nó là "Finds phone numbers in the web page you're on and allows you to call the number.".

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

screenshot
screenshot
screenshot

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

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

                        Make a phone call by clicking a number in your browser that will connect your device of choice (webphone, desk phone, cell phone, etc.) to the call.   

Click2Call calls a number for your phone device. Start the call by clicking a number in your browser. Your device will ring first. Answer it for the call to go through. Options include selecting which device will be connected to the call, the caller ID number (in your network) that will display, and any prefixes that should precede the clicked number. 

*** Note that the Click2Call plugin is an extension of your VoIP package and will not function when used by itself.  Your administrator will provide a username, password and URL to use with Click2Call.                    

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

Tên Click2Call Click2Call
ID mdpmpbnclnmnckcbpnggmjednafpecpc
URL Chính Thức https://chromewebstore.google.com/detail/click2call/mdpmpbnclnmnckcbpnggmjednafpecpc
Mô tả Finds phone numbers in the web page you're on and allows you to call the number.
Kích Thước Tệp 691 KB
Số Lần Cài Đặt 981
Phiên Bản Hiện Tại 1.0.8
Cập Nhật Lần Cuối 2023-04-17
Ngày Phát Hành 2019-04-24
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển UC Apps
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://ucapps.cloud/
URL Trang Chính Sách Bảo Mật https://ucapps.cloud/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click2Call",
    "version": "1.0.8",
    "version_name": "1.0.8",
    "description": "Finds phone numbers in the web page you're on and allows you to call the number.",
    "icons": {
        "128": "green-icon-38.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "thirdParty\/jquery-2.2.1.min.js",
                "click2call_content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": {
        "default_name": "Click2Call",
        "default_icon": "red-icon-38.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "default-src 'none'; style-src 'self' 'unsafe-inline' https:\/\/fonts.googleapis.com; script-src 'self'; connect-src *; img-src *; font-src https:\/\/fonts.gstatic.com"
    }
}