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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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 } |