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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}