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 kiskonr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Randomize Meet Participants एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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 } |