ShoreTel Web Dialer

Converts web page phone numbers to dialable links

什麼是ShoreTel Web Dialer?

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

擴展截圖

screenshot

下載ShoreTel Web Dialer擴展crx文件

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

擴展使用說明

                        ShoreTel Web Dialer allows a ShoreTel user to dial phone numbers appearing on any page displayed  with a single click.                    

擴展基本資訊

名稱 ShoreTel Web Dialer ShoreTel Web Dialer
ID lgjpoiedchgklleaenbccolnlmooinhp
官方網址 https://chromewebstore.google.com/detail/shoretel-web-dialer/lgjpoiedchgklleaenbccolnlmooinhp
簡介 Converts web page phone numbers to dialable links
檔案大小 96.78 KB
安裝次數 0
目前版本 1.2.3.0
更新時間 2017-12-06
上架時間 2017-12-06
評分 2.25/5 共 4 次評分
開發者 Mitel
電子郵箱 [email protected]
付費類型 free
說明頁面URL http://support.shoretel.com/products/applications/web_dialer_service_extensions.html
隱私政策頁面URL https://chromeextension.globalauth.mitelcloud.com/privacy_wd.html
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ShoreTel Web Dialer",
    "version": "1.2.3.0",
    "manifest_version": 2,
    "description": "Converts web page phone numbers to dialable links",
    "browser_action": {
        "default_icon": "shoretellogo48.png",
        "default_popup": "popup.html",
        "default_title": "ShoreTel Web Dialer"
    },
    "icons": {
        "16": "shoretellogo16.png",
        "48": "shoretellogo48.png",
        "128": "shoretellogo128.png"
    },
    "background": {
        "scripts": [
            "webdialerBG.js"
        ]
    },
    "options_page": "webDialerOptions.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "webdialer.js"
            ],
            "css": [
                "webdialer.css"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}