Mitel Web Extension
Dials phone numbers on web pages using an installed Mitel softphone
ما هو Mitel Web Extension؟
Mitel Web Extension هو إضافة Chrome تم تطويرها بواسطة Mitel، والميزة الرئيسية لها هي "Dials phone numbers on web pages using an installed Mitel softphone".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Mitel Web Extension
قم بتنزيل ملفات الامتداد Mitel Web Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
An extension for Mitel subscribers, that identifies phone numbers on any web page, creating dial-able links. Numbers are dialed via several Mitel client applications. Quick Reference Guide: https://www.mitel.com/document-center/technology/cloudlink/all-releases/en/mitel-web-extension-html End User License Agreement: https://www.mitel.com/-/media/mitel/file/pdf/legal-docs/eula/mitel-web-extension-r1-eula-22sep20.pdf
معلومات أساسية عن التمديد
الاسم | Mitel Web Extension |
ID | njodpoefbejllnijefababpjlkhologo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/mitel-web-extension/njodpoefbejllnijefababpjlkhologo |
الوصف | Dials phone numbers on web pages using an installed Mitel softphone |
حجم الملف | 602 KB |
عدد التثبيتات | 3,472 |
النسخة الحالية | 1.0.5 |
آخر تحديث | 2022-01-06 |
تاريخ النشر | 2020-11-05 |
تقييم | 4.75/5 مجموع تقييمات 8 |
المطور | Mitel |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.mitel.com/document-center/technology/cloudlink/all-releases/en/mitel-web-extension-html |
عنوان صفحة سياسة الخصوصية | https://www.mitel.com/en-ca/legal/mitel-application-privacy-policy/mitel-cloud-application-privacy-policy-en |
اللغات المدعومة | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "version": "1.0.5", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "default_title": "Mitel Web Extension", "default_popup": "pages\/options.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "https:\/\/ms-teams-integration.mitel.io\/", "https:\/\/ms-teams-integration.dev.mitel.io\/", "https:\/\/ms-teams-integration-stage.mitel.io\/", "https:\/\/ms-teams-integration-stage.dev.mitel.io\/" ], "css": [ "styles\/contentscript.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_start", "all_frames": true } ], "permissions": [ "storage" ] } |