Click2Call

Finds phone numbers in the web page you're on and allows you to call the number.

Click2Call란 무엇입니까?

Click2Call은(는) UC Apps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Finds phone numbers in the web page you're on and allows you to call the number."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Click2Call 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Make a phone call by clicking a number in your browser that will connect your device of choice (webphone, desk phone, cell phone, etc.) to the call.   

Click2Call calls a number for your phone device. Start the call by clicking a number in your browser. Your device will ring first. Answer it for the call to go through. Options include selecting which device will be connected to the call, the caller ID number (in your network) that will display, and any prefixes that should precede the clicked number. 

*** Note that the Click2Call plugin is an extension of your VoIP package and will not function when used by itself.  Your administrator will provide a username, password and URL to use with Click2Call.                    

확장 프로그램 기본 정보

이름 Click2Call Click2Call
ID mdpmpbnclnmnckcbpnggmjednafpecpc
공식 URL https://chromewebstore.google.com/detail/click2call/mdpmpbnclnmnckcbpnggmjednafpecpc
설명 Finds phone numbers in the web page you're on and allows you to call the number.
파일 크기 691 KB
설치 횟수 981
현재 버전 1.0.8
최근 업데이트 2023-04-17
출시 날짜 2019-04-24
평점 3.67/5 총 3 개의 평점
개발자 UC Apps
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://ucapps.cloud/
개인정보 보호 정책 페이지 URL https://ucapps.cloud/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click2Call",
    "version": "1.0.8",
    "version_name": "1.0.8",
    "description": "Finds phone numbers in the web page you're on and allows you to call the number.",
    "icons": {
        "128": "green-icon-38.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "thirdParty\/jquery-2.2.1.min.js",
                "click2call_content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": {
        "default_name": "Click2Call",
        "default_icon": "red-icon-38.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "default-src 'none'; style-src 'self' 'unsafe-inline' https:\/\/fonts.googleapis.com; script-src 'self'; connect-src *; img-src *; font-src https:\/\/fonts.gstatic.com"
    }
}