VOXO Quick Dial

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

VOXO Quick Dialคืออะไร?

VOXO Quick Dial เป็นส่วนขยายของ Chrome ที่พัฒนาโดย VOXO และคุณลักษณะหลักของมันคือ "This extensions allows VOXO customers to quickly dial telephone numbers on websites"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VOXO Quick Dial

ดาวน์โหลดไฟล์ส่วนขยาย VOXO Quick Dial ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}