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開發的Chrome擴展程式,該擴展的主要功能是“Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.”。
擴展截圖
下載Randomize Meet Participants擴展crx文件
下載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 |
官方網址 | 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 } |