Randomize Meet Participants
Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.
¿Qué es Randomize Meet Participants?
Randomize Meet Participants es una extensión de Chrome desarrollada por kiskonr, y su función principal es "Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Randomize Meet Participants
Descarga archivos de extensión Randomize Meet Participants 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 randomizes Google Meet call participants into a list. This is useful to set speaking order in the meeting, for example in daily scrum. You can copy the list and share it in the chat. It includes 2 options: - Shuffle (generates a randomly sorted list of names) - Add custom list (opens an input to add custom participants) You can view the source code to this project here https://github.com/kiskonr/randomize-meet-participants
Información Básica de la Extensión
Nombre | Randomize Meet Participants |
ID | ippiopgdpcekjnciijkepdcnfjmblmgj |
URL Oficial | https://chromewebstore.google.com/detail/randomize-meet-participan/ippiopgdpcekjnciijkepdcnfjmblmgj |
Descripción | Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting. |
Tamaño del Archivo | 112 KB |
Cantidad de Instalaciones | 82 |
Versión Actual | 0.0.2 |
Última Actualización | 2021-06-18 |
Fecha de Publicación | 2021-05-20 |
Calificación | 3.00/5 Total de 1 Calificaciones |
Desarrollador | kiskonr |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/kiskonr/randomize-meet-participants |
URL de la Página de Ayuda | https://github.com/kiskonr/randomize-meet-participants |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Randomize Meet Participants", "version": "0.0.2", "description": "Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.", "permissions": [ "activeTab", "declarativeContent" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "helper.js" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" } }, "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "manifest_version": 2 } |