ShoreTel Web Dialer

Converts web page phone numbers to dialable links

ShoreTel Web Dialer là gì?

ShoreTel Web Dialer là một tiện ích mở rộng Chrome được phát triển bởi Mitel, và tính năng chính của nó là "Converts web page phone numbers to dialable links".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ShoreTel Web Dialer

Tải xuống các tệp mở rộng ShoreTel Web Dialer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ShoreTel Web Dialer ShoreTel Web Dialer
ID lgjpoiedchgklleaenbccolnlmooinhp
URL Chính Thức https://chromewebstore.google.com/detail/shoretel-web-dialer/lgjpoiedchgklleaenbccolnlmooinhp
Mô tả Converts web page phone numbers to dialable links
Kích Thước Tệp 96.78 KB
Số Lần Cài Đặt 0
Phiên Bản Hiện Tại 1.2.3.0
Cập Nhật Lần Cuối 2017-12-06
Ngày Phát Hành 2017-12-06
Đánh Giá 2.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Mitel
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp http://support.shoretel.com/products/applications/web_dialer_service_extensions.html
URL Trang Chính Sách Bảo Mật https://chromeextension.globalauth.mitelcloud.com/privacy_wd.html
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}