ShoreTel Sky Web Dialer

Converts web page phone numbers to dialable links

ShoreTel Sky Web Dialer là gì?

ShoreTel Sky Web Dialer là một tiện ích mở rộng Chrome được phát triển bởi https://www.mitel.com, 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 Sky Web Dialer

Tải xuống các tệp mở rộng ShoreTel Sky 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 a web page with a single click.                    

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

Tên ShoreTel Sky Web Dialer ShoreTel Sky Web Dialer
ID hmciedknmdagddjhaakffmnkngdlpmjf
URL Chính Thức https://chromewebstore.google.com/detail/shoretel-sky-web-dialer/hmciedknmdagddjhaakffmnkngdlpmjf
Mô tả Converts web page phone numbers to dialable links
Kích Thước Tệp 55.99 KB
Số Lần Cài Đặt 0
Phiên Bản Hiện Tại 1.0.12
Cập Nhật Lần Cuối 2020-06-17
Ngày Phát Hành 2020-06-16
Đánh Giá 3.43/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://www.mitel.com
Email [email protected]
Loại Thanh Toán free
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 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"
    ]
}