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
Eメール [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:\/\/*\/*"
    ]
}