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.”。

扩展截图

screenshot
screenshot
screenshot

下载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 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
}