Randomize Meet Participants

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

Τι είναι το Randomize Meet Participants;

Το Randomize Meet Participants είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kiskonr, και η κύρια λειτουργία του είναι "Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Randomize Meet Participants

Λήψη αρχείων επέκτασης Randomize Meet Participants σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Randomize Meet Participants Randomize Meet Participants
ID ippiopgdpcekjnciijkepdcnfjmblmgj
Επίσημο URL https://chromewebstore.google.com/detail/randomize-meet-participan/ippiopgdpcekjnciijkepdcnfjmblmgj
Περιγραφή Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.
Μέγεθος Αρχείου 112 KB
Αριθμός Εγκαταστάσεων 82
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2021-06-18
Ημερομηνία Δημοσίευσης 2021-05-20
Αξιολόγηση 3.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής kiskonr
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/kiskonr/randomize-meet-participants
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/kiskonr/randomize-meet-participants
Υποστηριζόμενες Γλώσσες 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
}