Gather Mic Toggle

Mic Toggle on gather.town

Wat is Gather Mic Toggle?

Gather Mic Toggle is een Chrome-extensie ontwikkeld door Caio Rodrigues, en de belangrijkste functie is "Mic Toggle on gather.town".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Gather Mic Toggle

Download Gather Mic Toggle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Gather Mic Toggle Gather Mic Toggle
ID dicgdmbehbkbkncebodffnhkgoaebpoo
Officiële URL https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo
Beschrijving Mic Toggle on gather.town
Bestandsgrootte 15.3 KB
Aantal Installaties 86
Huidige Versie 1.0
Laatst Bijgewerkt 2021-04-20
Publicatiedatum 2021-04-19
Ontwikkelaar Caio Rodrigues
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}