VOXO Quick Dial

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

VOXO Quick Dial là gì?

VOXO Quick Dial là một tiện ích mở rộng Chrome được phát triển bởi VOXO, và tính năng chính của nó là "This extensions allows VOXO customers to quickly dial telephone numbers on websites".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng VOXO Quick Dial

Tải xuống các tệp mở rộng VOXO Quick Dial dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên VOXO Quick Dial VOXO Quick Dial
ID ckohnlaiommapdclfdndapcofmkacino
URL Chính Thức https://chromewebstore.google.com/detail/voxo-quick-dial/ckohnlaiommapdclfdndapcofmkacino
Mô tả This extensions allows VOXO customers to quickly dial telephone numbers on websites
Kích Thước Tệp 66.67 KB
Số Lần Cài Đặt 679
Phiên Bản Hiện Tại 1.1.20
Cập Nhật Lần Cuối 2020-12-16
Ngày Phát Hành 2020-06-10
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển VOXO
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}