CallTrackingMetrics

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

什么是CallTrackingMetrics?

CallTrackingMetrics是由https://calltrackingmetrics.com开发的Chrome扩展程序,该扩展的主要功能是“Allow tel:// to be clicked on to dial via CTM.”。

扩展截图

screenshot

下载CallTrackingMetrics扩展crx文件

下载CallTrackingMetrics扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 CallTrackingMetrics CallTrackingMetrics
ID mceiniegnkigckkmpgggllkhfnghjike
官方URL https://chromewebstore.google.com/detail/calltrackingmetrics/mceiniegnkigckkmpgggllkhfnghjike
简介 Allow tel:// to be clicked on to dial via CTM.
文件大小 137 KB
安装次数 164
当前版本 2.5
更新时间 2023-06-02
上架时间 2021-12-01
开发者 https://calltrackingmetrics.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.calltrackingmetrics.com/
帮助页面URL https://www.calltrackingmetrics.com/help
隐私政策页面URL https://www.calltrackingmetrics.com/legal/privacy
支持的语言 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
}