Google Meet Randomizer

Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard

Google Meet Randomizer क्या है?

Google Meet Randomizer appsbylamby द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Google Meet Randomizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        ** If you experience issues with this extension please email [email protected] **

This is a simple Chrome extension which generates a randomized list of participants on a Google Meet call. I built this to make our large group meetings easier, as it's often difficult to determine who has already given their update or who should be next. This extension can also be used to take attendance or randomly select participants.

It includes 4 commands:
Randomize (generates a randomly sorted list of names)
Resync (keeps the list order the same, but adds / removes guests who have joined or left)
Copy (copies the list of names to the clipboard)
Autopost **New** (automatically posts to chat window when generating or resyncing lists)

You can view the source code to this project here https://github.com/LambyPants/google-meet-randomizer

2.0.0 update - supports redesigned UI of Google Meet. Contact the developer if issues persist.

2.2.0 update - supports new UI of Google Meet

2.2.1 update - fixes bug with resync

Some users have complained this extension doesn't work for them; I am guessing it's because the UI of Google Meet may vary region-to-region. If you experience issues please reach out to me and include (a) your region and (b) what error message, if any, you are encountering.                    

एक्सटेंशन की मूल जानकारी

नाम Google Meet Randomizer Google Meet Randomizer
ID lamfcglihfmokpfelfkepmhlggnkeppn
आधिकारिक URL https://chromewebstore.google.com/detail/google-meet-randomizer/lamfcglihfmokpfelfkepmhlggnkeppn
विवरण Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard
फ़ाइल का आकार 9.68 KB
स्थापना संख्या 2,130
वर्तमान संस्करण 2.2.3
अंतिम अपडेट 2021-10-14
प्रकाशन तिथि 2020-08-24
रेटिंग 2.83/5 कुल 6 रेटिंग्स
डेवलपर appsbylamby
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/LambyPants/google-meet-randomizer
सहायता पृष्ठ URL https://github.com/LambyPants/google-meet-randomizer/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Randomizer",
    "version": "2.2.3",
    "description": "Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "js": [
                "assets\/content-e0a4c960.js"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png",
        "128": "large-icon.png"
    },
    "web_accessible_resources": [
        "content.js"
    ]
}