Switchvox Dial

Call phone numbers on a webpage using Switchvox.

Switchvox Dial란 무엇입니까?

Switchvox Dial은(는) Switchvox에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Call phone numbers on a webpage using Switchvox."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        A Switchvox Business Phone System is required. The extension lets you dial any phone number with three simple steps: select the phone number, right-click, and choose dial. And you can redial, even after you leave the webpage.                    

확장 프로그램 기본 정보

이름 Switchvox Dial Switchvox Dial
ID maccjkeijombhmhohimpldgplfdgfiig
공식 URL https://chromewebstore.google.com/detail/switchvox-dial/maccjkeijombhmhohimpldgplfdgfiig
설명 Call phone numbers on a webpage using Switchvox.
파일 크기 476 KB
설치 횟수 634
현재 버전 3.0.3
최근 업데이트 2022-07-20
출시 날짜 2022-07-19
평점 1.00/5 총 1 개의 평점
개발자 Switchvox
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.sangoma.com/business-phone-systems/features/click-to-dial/
도움말 페이지 URL https://help.sangoma.com/community/s/article/How-do-I-use-Switchvox-Dial
개인정보 보호 정책 페이지 URL https://www.sangoma.com/wp-content/uploads/Privacy-Policy.pdf
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Switchvox Dial",
    "version": "3.0.3",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "description": "Call phone numbers on a webpage using Switchvox.",
    "homepage_url": "http:\/\/www1.digium.com\/en\/products\/switchvox\/features\/switchvox-apps",
    "options_ui": {
        "page": "static\/html\/options.html",
        "browser_style": true
    },
    "icons": {
        "16": "static\/images\/switchboard_extension_icon_16.png",
        "32": "static\/images\/switchboard_extension_icon_32.png",
        "48": "static\/images\/switchboard_extension_icon_48.png",
        "128": "static\/images\/switchboard_extension_icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "dist\/content.js"
            ],
            "css": [
                "static\/content.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "dist\/background.js"
    },
    "action": {
        "default_icon": "static\/images\/switchboard_extension_icon_32.png",
        "default_popup": "static\/html\/popup.html",
        "browser_style": false
    },
    "web_accessible_resources": [
        {
            "resources": [
                "static\/*"
            ],
            "use_dynamic_url": true
        }
    ]
}