VOXO Quick Dial

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

Was ist VOXO Quick Dial?

VOXO Quick Dial ist eine Chrome-Erweiterung, die von VOXO entwickelt wurde, und ihr Hauptmerkmal ist "This extensions allows VOXO customers to quickly dial telephone numbers on websites".

Erweiterungsscreenshots

screenshot

VOXO Quick Dial-Erweiterungs-CRX-Datei herunterladen

Laden Sie VOXO Quick Dial-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name VOXO Quick Dial VOXO Quick Dial
ID ckohnlaiommapdclfdndapcofmkacino
Offizielle URL https://chromewebstore.google.com/detail/voxo-quick-dial/ckohnlaiommapdclfdndapcofmkacino
Beschreibung This extensions allows VOXO customers to quickly dial telephone numbers on websites
Dateigröße 66.67 KB
Installationsanzahl 679
Aktuelle Version 1.1.20
Letztes Update 2020-12-16
Veröffentlichungsdatum 2020-06-10
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler VOXO
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}