Microsoft Teams Reply
A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu
Microsoft Teams Replyとは何ですか?
Microsoft Teams ReplyはRuslan Peshchukによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu」です。
拡張機能のスクリーンショット
Microsoft Teams Reply拡張機能のCRXファイルをダウンロード
Microsoft Teams Reply拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu. Donate: https://www.patreon.com/peshrus
拡張機能の基本情報
名前 | Microsoft Teams Reply |
ID | fgdlknkkknhcdldggojiooiemajodncl |
公式URL | https://chromewebstore.google.com/detail/microsoft-teams-reply/fgdlknkkknhcdldggojiooiemajodncl |
説明 | A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu |
ファイルサイズ | 10.09 KB |
インストール数 | 5,631 |
現在のバージョン | 1.1 |
最終更新日 | 2020-10-13 |
公開日 | 2020-05-19 |
評価 | 3.91/5 合計 22 レビュー |
開発者 | Ruslan Peshchuk |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://www.patreon.com/peshrus |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Microsoft Teams Reply", "version": "1.1", "description": "A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu", "manifest_version": 2, "permissions": [ "contextMenus" ], "icons": { "16": "icon16.png", "32": "icon32.png", "96": "icon96.png" }, "background": { "scripts": [ "js\/ms-teams-reply-background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/teams.microsoft.com\/*", "https:\/\/teams.microsoft.com.us.cas.ms\/*", "https:\/\/teams.microsoft.com.us.access-control.cas.ms\/*", "https:\/\/teams.microsoft.com.us.saml.cas.ms\/*", "https:\/\/teams.microsoft.com.us2.cas.ms\/*", "https:\/\/teams.microsoft.com.us2.access-control.cas.ms\/*", "https:\/\/teams.microsoft.com.us2.saml.cas.ms\/*", "https:\/\/teams.microsoft.com.us3.cas.ms\/*", "https:\/\/teams.microsoft.com.us3.access-control.cas.ms\/*", "https:\/\/teams.microsoft.com.us3.saml.cas.ms\/*", "https:\/\/teams.microsoft.com.eu1.cas.ms\/*", "https:\/\/teams.microsoft.com.eu1.access-control.cas.ms\/*", "https:\/\/teams.microsoft.com.eu1.saml.cas.ms\/*", "https:\/\/teams.microsoft.com.eu2.cas.ms\/*", "https:\/\/teams.microsoft.com.eu2.access-control.cas.ms\/*", "https:\/\/teams.microsoft.com.eu2.saml.cas.ms\/*" ], "run_at": "document_idle", "js": [ "js\/ms-teams-reply-content.js" ] } ] } |