Randomize Meet Participants
Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.
Wat is Randomize Meet Participants?
Randomize Meet Participants is een Chrome-extensie ontwikkeld door kiskonr, en de belangrijkste functie is "Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.".
Extensie Screenshots
Download het CRX-bestand van de extensie Randomize Meet Participants
Download Randomize Meet Participants-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Randomize Meet Participants |
ID | ippiopgdpcekjnciijkepdcnfjmblmgj |
Officiële URL | https://chromewebstore.google.com/detail/randomize-meet-participan/ippiopgdpcekjnciijkepdcnfjmblmgj |
Beschrijving | Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting. |
Bestandsgrootte | 112 KB |
Aantal Installaties | 82 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2021-06-18 |
Publicatiedatum | 2021-05-20 |
Beoordeling | 3.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | kiskonr |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/kiskonr/randomize-meet-participants |
Help Pagina-URL | https://github.com/kiskonr/randomize-meet-participants |
Ondersteunde Talen | 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 } |