Grandstream Wave Click2Dial

This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.

Grandstream Wave Click2Dial란 무엇입니까?

Grandstream Wave Click2Dial은(는) https://grandstream.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial."입니다.

확장 프로그램 스크린샷

screenshot

Grandstream Wave Click2Dial 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        If the users want to make a quick call with Grandstream Wave on the browser page , they can install the extension. The extension will check the phone number on the browsing page and add a hyperlink once phone number detected. The users can click the phone number and launch the Grandstream Wave to make a call .                    

확장 프로그램 기본 정보

이름 Grandstream Wave Click2Dial Grandstream Wave Click2Dial
ID jmphnnnhjeigmcgilgifhjnkelemfdfc
공식 URL https://chromewebstore.google.com/detail/grandstream-wave-click2di/jmphnnnhjeigmcgilgifhjnkelemfdfc
설명 This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.
파일 크기 75.05 KB
설치 횟수 1,728
현재 버전 1.0.11.7
최근 업데이트 2023-11-02
출시 날짜 2021-11-16
평점 1.33/5 총 3 개의 평점
개발자 https://grandstream.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.grandstream.com/
도움말 페이지 URL https://www.grandstream.com/support
개인정보 보호 정책 페이지 URL http://www.ipvideotalk.com/privacy-policy.html
지원되는 언어 en
manifest.json
{
    "name": "Grandstream Wave Click2Dial",
    "description": "This plug-in can recognize phonenumber on the browsing page, and combine Grandstream Wave to speed dial.",
    "version": "1.0.11.7",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "96": "icon96.png",
            "128": "icon128.png"
        },
        "default_title": "Wave"
    },
    "icons": {
        "16": "icon16.png",
        "96": "icon96.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "open_in_tab": false,
        "page": "options.html"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "background"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "short_name": "Wave",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}