VOXO Quick Dial

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

Cos'è VOXO Quick Dial?

VOXO Quick Dial è un'estensione di Chrome sviluppata da VOXO, e la sua funzione principale è "This extensions allows VOXO customers to quickly dial telephone numbers on websites".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione VOXO Quick Dial

Scarica i file di estensione VOXO Quick Dial in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome VOXO Quick Dial VOXO Quick Dial
ID ckohnlaiommapdclfdndapcofmkacino
URL Ufficiale https://chromewebstore.google.com/detail/voxo-quick-dial/ckohnlaiommapdclfdndapcofmkacino
Descrizione This extensions allows VOXO customers to quickly dial telephone numbers on websites
Dimensione del File 66.67 KB
Conteggio Installazioni 679
Versione Corrente 1.1.20
Ultimo Aggiornamento 2020-12-16
Data di Pubblicazione 2020-06-10
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore VOXO
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}