Gather Mic Toggle

Mic Toggle on gather.town

Что такое Gather Mic Toggle?

Gather Mic Toggle - это расширение Chrome, разработанное Caio Rodrigues, и его основная функция - "Mic Toggle on gather.town".

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

screenshot

Скачать файл CRX расширения Gather Mic Toggle

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

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

                        Provides a microphone toggling keyboard shortcut on the video-calling virtual space app Gather.town (https://gather.town/). Default is Ctrl+Q, but you can customize it on chrome://extensions/shortcuts.

*Disclaimer: the extension is not provided by Gather Town officially and the author has no affiliation with it                    

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

Название Gather Mic Toggle Gather Mic Toggle
ID dicgdmbehbkbkncebodffnhkgoaebpoo
Официальный URL https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo
Описание Mic Toggle on gather.town
Размер файла 15.3 KB
Количество установок 86
Текущая Версия 1.0
Последнее Обновление 2021-04-20
Дата публикации 2021-04-19
Разработчик Caio Rodrigues
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gather Mic Toggle",
    "description": "Mic Toggle on gather.town",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "16": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    },
    "permissions": [
        "https:\/\/gather.town\/app\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gather.town\/app\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "commands": {
        "toggle": {
            "suggested_key": {
                "default": "Ctrl+Q",
                "mac": "Command+Q"
            },
            "description": "Mute\/unmute",
            "global": true
        }
    },
    "browser_action": {
        "default_icon": "assets\/icon.png",
        "default_popup": "popup.html"
    }
}