Click2Call

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

Click2Call क्या है?

Click2Call UC Apps द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Finds phone numbers in the web page you're on and allows you to call the number."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Click2Call एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    }
}