Mitel Web Extension

Dials phone numbers on web pages using an installed Mitel softphone

Cos'è Mitel Web Extension?

Mitel Web Extension è un'estensione di Chrome sviluppata da Mitel, e la sua funzione principale è "Dials phone numbers on web pages using an installed Mitel softphone".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Mitel Web Extension

Scarica i file di estensione Mitel Web Extension 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

                        An extension for Mitel subscribers, that identifies phone numbers on any web page, creating dial-able links. Numbers are dialed via several Mitel client applications.

Quick Reference Guide:

https://www.mitel.com/document-center/technology/cloudlink/all-releases/en/mitel-web-extension-html

End User License Agreement: 

https://www.mitel.com/-/media/mitel/file/pdf/legal-docs/eula/mitel-web-extension-r1-eula-22sep20.pdf                    

Informazioni di Base sull'Estensione

Nome Mitel Web Extension Mitel Web Extension
ID njodpoefbejllnijefababpjlkhologo
URL Ufficiale https://chromewebstore.google.com/detail/mitel-web-extension/njodpoefbejllnijefababpjlkhologo
Descrizione Dials phone numbers on web pages using an installed Mitel softphone
Dimensione del File 602 KB
Conteggio Installazioni 3,472
Versione Corrente 1.0.5
Ultimo Aggiornamento 2022-01-06
Data di Pubblicazione 2020-11-05
Valutazione 4.75/5 Totale 8 Valutazioni
Sviluppatore Mitel
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.mitel.com/document-center/technology/cloudlink/all-releases/en/mitel-web-extension-html
URL della Pagina della Politica sulla Privacy https://www.mitel.com/en-ca/legal/mitel-application-privacy-policy/mitel-cloud-application-privacy-policy-en
Lingue Supportate en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "version": "1.0.5",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "Mitel Web Extension",
        "default_popup": "pages\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/ms-teams-integration.mitel.io\/",
                "https:\/\/ms-teams-integration.dev.mitel.io\/",
                "https:\/\/ms-teams-integration-stage.mitel.io\/",
                "https:\/\/ms-teams-integration-stage.dev.mitel.io\/"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ]
}