Mitel Connect Web Dialer

Converts web page phone numbers to dialable links

Was ist Mitel Connect Web Dialer?

Mitel Connect Web Dialer ist eine Chrome-Erweiterung, die von Mitel entwickelt wurde, und ihr Hauptmerkmal ist "Converts web page phone numbers to dialable links".

Erweiterungsscreenshots

screenshot

Mitel Connect Web Dialer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Mitel Connect Web Dialer-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

                        Mitel Connect Web Dialer allows a Mitel Connect user to dial phone numbers appearing on a web page with a single click.                    

Grundlegende Informationen zur Erweiterung

Name Mitel Connect Web Dialer Mitel Connect Web Dialer
ID hkciiohohfimeecpjoidoipjpalbabld
Offizielle URL https://chromewebstore.google.com/detail/mitel-connect-web-dialer/hkciiohohfimeecpjoidoipjpalbabld
Beschreibung Converts web page phone numbers to dialable links
Dateigröße 399 KB
Installationsanzahl 6,075
Aktuelle Version 1.0.18
Letztes Update 2021-08-09
Veröffentlichungsdatum 2019-03-31
Bewertung 3.83/5 Insgesamt 12 Bewertungen
Entwickler Mitel
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://www.mitel.com
Hilfeseite URL https://www.mitel.com/mitel-technical-support
URL der Datenschutzrichtlinien-Seite https://chromeextension.globalauth.mitelcloud.com/privacy_wd.html
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mitel Connect Web Dialer",
    "short_name": "STConnectWebDialer",
    "version": "1.0.18",
    "author": "Mitel",
    "manifest_version": 2,
    "description": "Converts web page phone numbers to dialable links",
    "browser_action": {
        "default_icon": "img\/mitelLogo-48.png",
        "default_popup": "popup.html",
        "default_title": "Mitel Connect Web Dialer"
    },
    "icons": {
        "16": "img\/mitelLogo-16.png",
        "48": "img\/mitelLogo-48.png",
        "128": "img\/mitelLogo-128.png"
    },
    "background": {
        "scripts": [
            "js\/webdialerBG.js",
            "js\/json2.js"
        ]
    },
    "options_page": "webDialerOptions.html",
    "options_ui": {
        "page": "webDialerOptions.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "js\/log4javascript.js",
                "js\/json2.js",
                "js\/jquery-1.8.2.js",
                "js\/jquery.base64.js",
                "js\/STPS.CASUtils-2.11.js",
                "js\/abcUtils_1.0.0.js",
                "js\/webdialer.js"
            ],
            "css": [
                "css\/webdialer.css"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "contextMenus",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        "LogonForm.htm",
        "webDialerOptions.html",
        "img\/*",
        "js\/*",
        "css\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}