Click to Dial

Make phone numbers on any page click to dial.

What is Click to Dial?

Click to Dial is a Chrome extension developed by Vodia Networks Inc., and its main feature is "Make phone numbers on any page click to dial.".

Extension Screenshots

screenshot

Download Click to Dial Extension CRX File

Download Click to Dial extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Click to Dial Click to Dial
ID fjoflheglodmbjfgbhfamglcimbedoff
Official URL https://chromewebstore.google.com/detail/click-to-dial/fjoflheglodmbjfgbhfamglcimbedoff
Description Make phone numbers on any page click to dial.
File Size 49.98 KB
Installation Count 431
Current Version 3.0
Last Updated 2020-05-28
Publish Date 2020-05-27
Developer Vodia Networks Inc.
Email [email protected]
Payment Type free
Extension Website https://vodia.com
Supported Languages 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"
    }
}