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 - это расширение Chrome, разработанное kiskonr, и его основная функция - "Web extension that randomize Google Meet participants into a list. This is useful to set speaking order in the meeting.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Randomize Meet Participants

Скачайте файлы расширений 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
}