Mitel Connect Web Dialer

Converts web page phone numbers to dialable links

Vad är Mitel Connect Web Dialer?

Mitel Connect Web Dialer är en Chrome-tillägg utvecklad av Mitel, och dess huvudfunktion är "Converts web page phone numbers to dialable links".

Tilläggsskärmbilder

screenshot

Ladda ner Mitel Connect Web Dialer-förlängningens CRX-fil

Ladda ner Mitel Connect Web Dialer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Mitel Connect Web Dialer Mitel Connect Web Dialer
ID hkciiohohfimeecpjoidoipjpalbabld
Officiell webbadress https://chromewebstore.google.com/detail/mitel-connect-web-dialer/hkciiohohfimeecpjoidoipjpalbabld
Beskrivning Converts web page phone numbers to dialable links
Filstorlek 399 KB
Antal Installationer 6,075
Aktuell Version 1.0.18
Senast Uppdaterad 2021-08-09
Publiceringsdatum 2019-03-31
Betyg 3.83/5 Totalt 12 Betyg
Utvecklare Mitel
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://www.mitel.com
Hjälpsida URL https://www.mitel.com/mitel-technical-support
URL till Sekretesspolicy Sidan https://chromeextension.globalauth.mitelcloud.com/privacy_wd.html
Stödda Språk 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'"
}