Click2Call

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

什麼是Click2Call?

Click2Call是由UC Apps開發的Chrome擴展程式,該擴展的主要功能是“Finds phone numbers in the web page you're on and allows you to call the number.”。

擴展截圖

screenshot
screenshot
screenshot

下載Click2Call擴展crx文件

下載Click2Call擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Click2Call Click2Call
ID mdpmpbnclnmnckcbpnggmjednafpecpc
官方網址 https://chromewebstore.google.com/detail/click2call/mdpmpbnclnmnckcbpnggmjednafpecpc
簡介 Finds phone numbers in the web page you're on and allows you to call the number.
檔案大小 691 KB
安裝次數 981
目前版本 1.0.8
更新時間 2023-04-17
上架時間 2019-04-24
評分 3.67/5 共 3 次評分
開發者 UC Apps
電子郵箱 [email protected]
付費類型 free
擴展官網 https://ucapps.cloud/
隱私政策頁面URL https://ucapps.cloud/privacy-policy
支援的語言 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"
    }
}