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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة http://support.shoretel.com/products/applications/web_dialer_service_extensions.html
عنوان صفحة سياسة الخصوصية 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:\/\/*\/*"
    ]
}