Google Meet Presenter Mode

Choose whether you can be muted while presenting in Google Meet

Google Meet Presenter Modeとは何ですか?

Google Meet Presenter ModeはPetri Koivulaによって開発されたChromeの拡張機能で、その主な機能は「Choose whether you can be muted while presenting in Google Meet」です。

拡張機能のスクリーンショット

screenshot
screenshot

Google Meet Presenter Mode拡張機能のCRXファイルをダウンロード

Google Meet Presenter Mode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Gives you a choice of whether other Google Meet users can mute you or not.

Intended for use by teachers and other presenters who might get griefed by anonymous users muting them in Meet.                    

拡張機能の基本情報

名前 Google Meet Presenter Mode Google Meet Presenter Mode
ID fiidmaaecmjkhpfinfkdcabglcmghnaa
公式URL https://chromewebstore.google.com/detail/google-meet-presenter-mod/fiidmaaecmjkhpfinfkdcabglcmghnaa
説明 Choose whether you can be muted while presenting in Google Meet
ファイルサイズ 6.03 KB
インストール数 10,000
現在のバージョン 0.0.2
最終更新日 2020-04-14
公開日 2020-04-14
評価 4.29/5 合計 7 レビュー
開発者 Petri Koivula
支払い方法 free
拡張機能のウェブサイト https://gitlab.com/PKJedi/meet-presenter
ヘルプページのURL https://gitlab.com/PKJedi/meet-presenter/-/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Presenter Mode",
    "short_name": "Presenter Mode",
    "version": "0.0.2",
    "description": "Choose whether you can be muted while presenting in Google Meet",
    "page_action": {
        "default_icon": {
            "32": "assets\/icon_off_32.png"
        },
        "default_title": "Disabled"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "https:\/\/meet.google.com\/*"
    ]
}