FortiVoice Click-to-dial

Initiate calls with FortiVoice from Chrome.

Cos'è FortiVoice Click-to-dial?

FortiVoice Click-to-dial è un'estensione di Chrome sviluppata da FortiVoice, e la sua funzione principale è "Initiate calls with FortiVoice from Chrome.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione FortiVoice Click-to-dial

Scarica i file di estensione FortiVoice Click-to-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

                        FortiVoice Click-to-dial works with in conjunction with your FortiVoice Enterprise phone system to allow you select a phone number from a website and automatically call the party using your phone system extension.                    

Informazioni di Base sull'Estensione

Nome FortiVoice Click-to-dial FortiVoice Click-to-dial
ID hnkgbaajmjmmlpfbemelmppaefelmbko
URL Ufficiale https://chromewebstore.google.com/detail/fortivoice-click-to-dial/hnkgbaajmjmmlpfbemelmppaefelmbko
Descrizione Initiate calls with FortiVoice from Chrome.
Dimensione del File 81.79 KB
Conteggio Installazioni 338
Versione Corrente 1.0.10
Ultimo Aggiornamento 2023-02-11
Data di Pubblicazione 2019-10-30
Valutazione 3.14/5 Totale 7 Valutazioni
Sviluppatore FortiVoice
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://www.fortivoice.com
URL della Pagina della Politica sulla Privacy https://www.fortinet.com/corporate/about-us/privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FortiVoice Click-to-dial",
    "version": "1.0.10",
    "description": "Initiate calls with FortiVoice from Chrome.",
    "manifest_version": 3,
    "icons": {
        "128": "images\/fv_corner_icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "options_ui": {
        "page": "views\/options.html"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/phone_blue.png",
                "styles\/contentStyle.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/fv_corner_icon_128.png",
        "default_popup": "views\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*.htm",
                "file:\/\/\/*.html"
            ],
            "css": [
                "styles\/contentStyle.css"
            ],
            "js": [
                "scripts\/libphonenumber-max.min.js",
                "scripts\/util.js",
                "scripts\/requestUtil.js",
                "scripts\/content.js"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self",
        "worker-src": "self"
    }
}