Google Meet Randomizer

Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard

什么是Google Meet Randomizer?

Google Meet Randomizer是由appsbylamby开发的Chrome扩展程序,该扩展的主要功能是“Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Google Meet Randomizer扩展crx文件

下载Google Meet Randomizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        ** If you experience issues with this extension please email [email protected] **

This is a simple Chrome extension which generates a randomized list of participants on a Google Meet call. I built this to make our large group meetings easier, as it's often difficult to determine who has already given their update or who should be next. This extension can also be used to take attendance or randomly select participants.

It includes 4 commands:
Randomize (generates a randomly sorted list of names)
Resync (keeps the list order the same, but adds / removes guests who have joined or left)
Copy (copies the list of names to the clipboard)
Autopost **New** (automatically posts to chat window when generating or resyncing lists)

You can view the source code to this project here https://github.com/LambyPants/google-meet-randomizer

2.0.0 update - supports redesigned UI of Google Meet. Contact the developer if issues persist.

2.2.0 update - supports new UI of Google Meet

2.2.1 update - fixes bug with resync

Some users have complained this extension doesn't work for them; I am guessing it's because the UI of Google Meet may vary region-to-region. If you experience issues please reach out to me and include (a) your region and (b) what error message, if any, you are encountering.                    

扩展基本信息

名称 Google Meet Randomizer Google Meet Randomizer
ID lamfcglihfmokpfelfkepmhlggnkeppn
官方URL https://chromewebstore.google.com/detail/google-meet-randomizer/lamfcglihfmokpfelfkepmhlggnkeppn
简介 Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard
文件大小 9.68 KB
安装次数 2,130
当前版本 2.2.3
更新时间 2021-10-14
上架时间 2020-08-24
评分 2.83/5 共6次评分
开发者 appsbylamby
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/LambyPants/google-meet-randomizer
帮助页面URL https://github.com/LambyPants/google-meet-randomizer/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Randomizer",
    "version": "2.2.3",
    "description": "Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "js": [
                "assets\/content-e0a4c960.js"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png",
        "128": "large-icon.png"
    },
    "web_accessible_resources": [
        "content.js"
    ]
}