FoxTel Click To Call

This extension detects phone numbers and add phone icon with link to an external application.

FoxTel Click To Call란 무엇입니까?

FoxTel Click To Call은(는) Turfanza Solutions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension detects phone numbers and add phone icon with link to an external application."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

FoxTel Click To Call 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Dial a phone number by just clicking on it while surfing the web.

Click To Call extension detects phone numbers from the web pages and add a phone icon with link to selected protocol.

*Protocols can be selected from Options page.
*It recognizes US phone numbers by default. Users can opt to use custom regex pattern for detection.
*It also works on dynamic web pages that loads content on the fly.

This extension requires an external application that can handle tel, sip or callto protocols.                    

확장 프로그램 기본 정보

이름 FoxTel Click To Call FoxTel Click To Call
ID agfjggaihnlnaeijacpmbkpgpanlihcd
공식 URL https://chromewebstore.google.com/detail/foxtel-click-to-call/agfjggaihnlnaeijacpmbkpgpanlihcd
설명 This extension detects phone numbers and add phone icon with link to an external application.
파일 크기 15.66 KB
설치 횟수 276
현재 버전 1.0.2
최근 업데이트 2020-02-04
출시 날짜 2020-01-30
평점 3.86/5 총 7 개의 평점
개발자 Turfanza Solutions
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FoxTel Click To Call",
    "short_name": "ClickToCall",
    "description": "This extension detects phone numbers and add phone icon with link to an external application.",
    "version": "1.0.2",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "img\/icon48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "clickToCall.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "img\/*.png"
    ]
}