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
官方URL 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:\/\/*\/*"
    ]
}