Google Meet Presenter Mode

Choose whether you can be muted while presenting in Google Meet

Что такое Google Meet Presenter Mode?

Google Meet Presenter Mode - это расширение Chrome, разработанное Petri Koivula, и его основная функция - "Choose whether you can be muted while presenting in Google Meet".

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

screenshot
screenshot

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

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