Randomize Meet Participants
Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.
Cos'è Randomize Meet Participants?
Randomize Meet Participants è un'estensione di Chrome sviluppata da kiskonr, e la sua funzione principale è "Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Randomize Meet Participants
Scarica i file di estensione Randomize Meet Participants in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Randomize Meet Participants |
ID | ippiopgdpcekjnciijkepdcnfjmblmgj |
URL Ufficiale | https://chromewebstore.google.com/detail/randomize-meet-participan/ippiopgdpcekjnciijkepdcnfjmblmgj |
Descrizione | Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting. |
Dimensione del File | 112 KB |
Conteggio Installazioni | 82 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2021-06-18 |
Data di Pubblicazione | 2021-05-20 |
Valutazione | 3.00/5 Totale 1 Valutazioni |
Sviluppatore | kiskonr |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/kiskonr/randomize-meet-participants |
URL della Pagina di Aiuto | https://github.com/kiskonr/randomize-meet-participants |
Lingue Supportate | 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 } |