ShoreTel Web Dialer

Converts web page phone numbers to dialable links

ShoreTel Web Dialerคืออะไร?

ShoreTel Web Dialer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mitel และคุณลักษณะหลักของมันคือ "Converts web page phone numbers to dialable links"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ShoreTel Web Dialer

ดาวน์โหลดไฟล์ส่วนขยาย 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:\/\/*\/*"
    ]
}