Randomize Meet Participants

Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.

Qu'est-ce que Randomize Meet Participants ?

Randomize Meet Participants est une extension Chrome développée par kiskonr, et sa fonction principale est "Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Randomize Meet Participants

Téléchargez les fichiers d'extension Randomize Meet Participants au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Randomize Meet Participants Randomize Meet Participants
ID ippiopgdpcekjnciijkepdcnfjmblmgj
URL Officiel https://chromewebstore.google.com/detail/randomize-meet-participan/ippiopgdpcekjnciijkepdcnfjmblmgj
Description Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.
Taille du Fichier 112 KB
Nombre d'Installations 82
Version Actuelle 0.0.2
Dernière Mise à Jour 2021-06-18
Date de Publication 2021-05-20
Évaluation 3.00/5 Total 1 Évaluations
Développeur kiskonr
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/kiskonr/randomize-meet-participants
URL de la Page d'Aide https://github.com/kiskonr/randomize-meet-participants
Langues Prises en Charge 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
}