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 là gì?
Randomize Meet Participants là một tiện ích mở rộng Chrome được phát triển bởi kiskonr, và tính năng chính của nó là "Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Randomize Meet Participants
Tải xuống các tệp mở rộng Randomize Meet Participants dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Randomize Meet Participants |
ID | ippiopgdpcekjnciijkepdcnfjmblmgj |
URL Chính Thức | https://chromewebstore.google.com/detail/randomize-meet-participan/ippiopgdpcekjnciijkepdcnfjmblmgj |
Mô tả | Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting. |
Kích Thước Tệp | 112 KB |
Số Lần Cài Đặt | 82 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2021-06-18 |
Ngày Phát Hành | 2021-05-20 |
Đánh Giá | 3.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | kiskonr |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/kiskonr/randomize-meet-participants |
URL Trang Trợ Giúp | https://github.com/kiskonr/randomize-meet-participants |
Ngôn Ngữ Được Hỗ Trợ | 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 } |