Google Meet Controls

Control your microphone manners for Meet

Что такое Google Meet Controls?

Google Meet Controls - это расширение Chrome, разработанное Ivan Tichý, и его основная функция - "Control your microphone manners for Meet".

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

screenshot

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

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

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

                        This is a simple extension that allows to control Google Meet with global keyboard shortcuts. Please have a look at the video and set up keyboard shortcuts as it cannot be set automatically during installation.

It needs Chrome restart after installation.                    

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

Название Google Meet Controls Google Meet Controls
ID ncebfbcadlnhbfmfglhijjljfhimndil
Официальный URL https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil
Описание Control your microphone manners for Meet
Размер файла 22.74 KB
Количество установок 665
Текущая Версия 2.0
Последнее Обновление 2020-02-06
Дата публикации 2020-02-06
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Ivan Tichý
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки cs
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Controls",
    "short_name": "Meet Controls",
    "description": "Control your microphone manners for Meet",
    "version": "2.0",
    "icons": {
        "128": "notmuted.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "meet_controller.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "keyboard_listener.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "notifications"
    ],
    "commands": {
        "toggle": {
            "description": "Toggle mute",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+X",
                "mac": "MacCtrl+X"
            }
        },
        "mute": {
            "description": "Force mute",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "MacCtrl+M"
            }
        },
        "unmute": {
            "description": "Force unmute",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+U",
                "mac": "MacCtrl+U"
            }
        }
    }
}