VOXO Quick Dial

This extensions allows VOXO customers to quickly dial telephone numbers on websites

VOXO Quick Dial란 무엇입니까?

VOXO Quick Dial은(는) VOXO에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extensions allows VOXO customers to quickly dial telephone numbers on websites"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extensions allows VOXO customers to quickly dial telephone numbers found on websites via the VOXO Desktop softphone.                    

확장 프로그램 기본 정보

이름 VOXO Quick Dial VOXO Quick Dial
ID ckohnlaiommapdclfdndapcofmkacino
공식 URL https://chromewebstore.google.com/detail/voxo-quick-dial/ckohnlaiommapdclfdndapcofmkacino
설명 This extensions allows VOXO customers to quickly dial telephone numbers on websites
파일 크기 66.67 KB
설치 횟수 679
현재 버전 1.1.20
최근 업데이트 2020-12-16
출시 날짜 2020-06-10
평점 5.00/5 총 3 개의 평점
개발자 VOXO
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VOXO Quick Dial",
    "description": "This extensions allows VOXO customers to quickly dial telephone numbers on websites",
    "version": "1.1.20",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        ""
    ],
    "web_accessible_resources": [
        "ipc-bridge-init.js",
        "icon.png"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/app.voxo.co\/*",
            "https:\/\/app2.voxo.co\/*"
        ]
    },
    "background": {
        "scripts": [
            "image-to-grayscale.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png",
        "512": "icon-512.png",
        "1024": "icon-1024.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "intercept.js"
            ],
            "matches": [
                ""
            ],
            "exclude_matches": [
                "https:\/\/app.voxo.co\/*",
                "https:\/\/app2.voxo.co\/*",
                "https:\/\/mail.google.com\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "ipc-bridge.js"
            ],
            "matches": [
                "https:\/\/app.voxo.co\/*",
                "https:\/\/app2.voxo.co\/*"
            ],
            "run_at": "document_start"
        }
    ]
}