Mitel Connect Web Dialer

Converts web page phone numbers to dialable links

什麼是Mitel Connect Web Dialer?

Mitel Connect Web Dialer是由Mitel開發的Chrome擴展程式,該擴展的主要功能是“Converts web page phone numbers to dialable links”。

擴展截圖

screenshot

下載Mitel Connect Web Dialer擴展crx文件

下載Mitel Connect Web Dialer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Mitel Connect Web Dialer Mitel Connect Web Dialer
ID hkciiohohfimeecpjoidoipjpalbabld
官方網址 https://chromewebstore.google.com/detail/mitel-connect-web-dialer/hkciiohohfimeecpjoidoipjpalbabld
簡介 Converts web page phone numbers to dialable links
檔案大小 399 KB
安裝次數 6,075
目前版本 1.0.18
更新時間 2021-08-09
上架時間 2019-03-31
評分 3.83/5 共 12 次評分
開發者 Mitel
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.mitel.com
說明頁面URL https://www.mitel.com/mitel-technical-support
隱私政策頁面URL https://chromeextension.globalauth.mitelcloud.com/privacy_wd.html
支援的語言 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'"
}