Google Meet Random Picker

Google Meet Random Picker is a chrome extension which adds a random button to the google meet webpage, allowing users to pick…

Что такое Google Meet Random Picker?

Google Meet Random Picker - это расширение Chrome, разработанное davisgramza, и его основная функция - "Google Meet Random Picker is a chrome extension which adds a random button to the google meet webpage, allowing users to pick…".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Google Meet Random Picker

Скачайте файлы расширений Google Meet Random Picker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Google Meet Random Picker is a chrome extension which adds a random button to the google meet webpage, allowing users to pick random members of the google meet. After pressing the button, the name and image of the user is displayed below the button. This enables meeting leaders that requires active participation from the group i.e. a classroom, to have the capability to select users from the meeting randomly, without prejustice or bias. 

Note: Due to limitations of google meetings, only displayed users can be selected. Workaround is underway.                    

Основная информация о расширении

Название Google Meet Random Picker Google Meet Random Picker
ID iodkgkdaapibojgkceoclhgjpahblkio
Официальный URL https://chromewebstore.google.com/detail/google-meet-random-picker/iodkgkdaapibojgkceoclhgjpahblkio
Описание Google Meet Random Picker is a chrome extension which adds a random button to the google meet webpage, allowing users to pick…
Размер файла 584 KB
Количество установок 1,774
Текущая Версия 1.0
Последнее Обновление 2021-01-19
Дата публикации 2021-01-12
Рейтинг 1.00/5 Всего 3 оценок
Разработчик davisgramza
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet Random Picker",
    "version": "1.0",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "css": [
                "\/static\/css\/app.css",
                "\/static\/css\/content.css"
            ],
            "js": [
                "\/static\/js\/content.js"
            ]
        }
    ]
}