Mitel Web Extension
Dials phone numbers on web pages using an installed Mitel softphone
什么是Mitel Web Extension?
Mitel Web Extension是由Mitel开发的Chrome扩展程序,该扩展的主要功能是“Dials phone numbers on web pages using an installed Mitel softphone”。
扩展截图
下载Mitel Web Extension扩展crx文件
下载Mitel Web Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
隐私政策页面URL | 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" ] } |