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
¿Qué es Save Participants (Google Meet & MS Teams)?
Save Participants (Google Meet & MS Teams) es una extensión de Chrome desarrollada por leo.robol, y su función principal es "This extensions allows to download the list of participants in a meeting in Microsoft Teams or Google Meet as a text file".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Save Participants (Google Meet & MS Teams)
Descarga archivos de extensión Save Participants (Google Meet & MS Teams) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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. Información Básica de la Extensión
| Nombre | |
| ID | amajpgnakbemacnkmnjbkoacbaephjfd |
| URL Oficial | https://chromewebstore.google.com/detail/save-participants-google/amajpgnakbemacnkmnjbkoacbaephjfd |
| Descripción | This extensions allows to download the list of participants in a meeting in Microsoft Teams or Google Meet as a text file |
| Tamaño del Archivo | 26.33 KB |
| Cantidad de Instalaciones | 5,076 |
| Versión Actual | 2.7 |
| Última Actualización | 2021-02-19 |
| Fecha de Publicación | 2020-05-01 |
| Calificación | 4.86/5 Total de 7 Calificaciones |
| Desarrollador | leo.robol |
| Correo electrónico | [email protected] |
| Tipo de Pago | free |
| Sitio Web de la Extensión | https://github.com/robol/save-participants-extension |
| Idiomas Soportados | 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"
]
} | |