CallTrackingMetrics

Allow tel:// to be clicked on to dial via CTM.

What is CallTrackingMetrics?

CallTrackingMetrics is a Chrome extension developed by https://calltrackingmetrics.com, and its main feature is "Allow tel:// to be clicked on to dial via CTM.".

Extension Screenshots

screenshot

Download CallTrackingMetrics Extension CRX File

Download CallTrackingMetrics 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

                        Replace tel:// links on websites with a click to open the softphone with the number pre-loaded and ready to dial.                    

Extension Basic Information

Name CallTrackingMetrics CallTrackingMetrics
ID mceiniegnkigckkmpgggllkhfnghjike
Official URL https://chromewebstore.google.com/detail/calltrackingmetrics/mceiniegnkigckkmpgggllkhfnghjike
Description Allow tel:// to be clicked on to dial via CTM.
File Size 137 KB
Installation Count 164
Current Version 2.5
Last Updated 2023-06-02
Publish Date 2021-12-01
Developer https://calltrackingmetrics.com
Email [email protected]
Payment Type free
Extension Website https://www.calltrackingmetrics.com/
Help Page URL https://www.calltrackingmetrics.com/help
Privacy Policy Page URL https://www.calltrackingmetrics.com/legal/privacy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CallTrackingMetrics",
    "version": "2.5",
    "description": "Allow tel:\/\/ to be clicked on to dial via CTM.",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "replace.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "options_page": "options.html",
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "manifest_version": 3
}