ShoreTel Sky Web Dialer

Converts web page phone numbers to dialable links

什么是ShoreTel Sky Web Dialer?

ShoreTel Sky Web Dialer是由https://www.mitel.com开发的Chrome扩展程序,该扩展的主要功能是“Converts web page phone numbers to dialable links”。

扩展截图

screenshot

下载ShoreTel Sky Web Dialer扩展crx文件

下载ShoreTel Sky Web Dialer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 ShoreTel Sky Web Dialer ShoreTel Sky Web Dialer
ID hmciedknmdagddjhaakffmnkngdlpmjf
官方URL https://chromewebstore.google.com/detail/shoretel-sky-web-dialer/hmciedknmdagddjhaakffmnkngdlpmjf
简介 Converts web page phone numbers to dialable links
文件大小 55.99 KB
安装次数 0
当前版本 1.0.12
更新时间 2020-06-17
上架时间 2020-06-16
评分 3.43/5 共7次评分
开发者 https://www.mitel.com
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://chromeextension.globalauth.mitelcloud.com/privacy_wd.html
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ShoreTel Sky Web Dialer",
    "version": "1.0.12",
    "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 Sky 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"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "contextMenus",
        "tabs",
        "notifications"
    ]
}