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 |
电子邮箱 | [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" ] } ] } |