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 |
Eメール | [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" ] } |