Unmute Google Meet on Key Press

Unmute Google Meet on pressing spacebar and mute it again when you release it

Что такое Unmute Google Meet on Key Press?

Unmute Google Meet on Key Press - это расширение Chrome, разработанное vdevacc, и его основная функция - "Unmute Google Meet on pressing spacebar and mute it again when you release it".

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

screenshot
screenshot

Скачать файл CRX расширения Unmute Google Meet on Key Press

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

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

                        Isn't it too much work to unmute and mute your mic in a meeting just to say "Yes" or "Good Morning" or something small like that?!

This extension is just for that.. 
It unmutes the mic on spacebar key press and mutes it again when you release the key. Isn't it very convenient?

**This extension assumes that you keep your Google Meet on mute. Otherwise it will do the opposite. It will mute on spacebar key press and unmute it again key release.                    

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

Название Unmute Google Meet on Key Press Unmute Google Meet on Key Press
ID mmooelabpllbfelfkbeccahfimjggglh
Официальный URL https://chromewebstore.google.com/detail/unmute-google-meet-on-key/mmooelabpllbfelfkbeccahfimjggglh
Описание Unmute Google Meet on pressing spacebar and mute it again when you release it
Размер файла 27.16 KB
Количество установок 28
Текущая Версия 1.0
Последнее Обновление 2021-01-10
Дата публикации 2021-01-10
Рейтинг 5.00/5 Всего 2 оценок
Разработчик vdevacc
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unmute Google Meet on Key Press",
    "version": "1.0",
    "description": "Unmute Google Meet on pressing spacebar and mute it again when you release it",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "muteUnmuteGoogleMeet"
    }
}