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
Eメール [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
}