Save Participants (Google Meet & MS Teams)
This extensions allows to download the list of participants in a meeting in Microsoft Teams or Google Meet as a text file
什么是Save Participants (Google Meet & MS Teams)?
Save Participants (Google Meet & MS Teams)是由leo.robol开发的Chrome扩展程序,该扩展的主要功能是“This extensions allows to download the list of participants in a meeting in Microsoft Teams or Google Meet as a text file”。
扩展截图
下载Save Participants (Google Meet & MS Teams)扩展crx文件
下载Save Participants (Google Meet & MS Teams)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension can be used during a meeting on teams.microsoft.com or on meet.google.com to download the list of current participants as a text file.
This might be useful in a classroom or in meetings where the presence needs to be certified, to avoid a lengthy and error-prone copy-paste. 扩展基本信息
| 名称 | |
| ID | amajpgnakbemacnkmnjbkoacbaephjfd |
| 官方URL | https://chromewebstore.google.com/detail/save-participants-google/amajpgnakbemacnkmnjbkoacbaephjfd |
| 简介 | This extensions allows to download the list of participants in a meeting in Microsoft Teams or Google Meet as a text file |
| 文件大小 | 26.33 KB |
| 安装次数 | 5,076 |
| 当前版本 | 2.7 |
| 更新时间 | 2021-02-19 |
| 上架时间 | 2020-05-01 |
| 评分 | 4.86/5 共7次评分 |
| 开发者 | leo.robol |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/robol/save-participants-extension |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Save Participants (Google Meet & MS Teams)",
"version": "2.7",
"description": "This extensions allows to download the list of participants in a meeting in Microsoft Teams or Google Meet as a text file",
"permissions": [
"downloads",
"activeTab",
"declarativeContent",
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/particip_16.png",
"32": "images\/particip_32.png",
"48": "images\/particip_48.png",
"128": "images\/particip_128.png"
}
},
"manifest_version": 2,
"web_accessible_resources": [
"get-call.js"
]
} | |