Gather Mute Shortcut

Press SPACE to talk and custom shortcut to toggle mute

Wat is Gather Mute Shortcut?

Gather Mute Shortcut is een Chrome-extensie ontwikkeld door https://shinychang.net, en de belangrijkste functie is "Press SPACE to talk and custom shortcut to toggle mute".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Gather Mute Shortcut

Download Gather Mute Shortcut-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

                        Press SPACE to un-mute
Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic                    

Basisinformatie over de Extensie

Naam Gather Mute Shortcut Gather Mute Shortcut
ID ohhjbipfhipcebhjkcbodeilfgekihpj
Officiële URL https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj
Beschrijving Press SPACE to talk and custom shortcut to toggle mute
Bestandsgrootte 5.41 KB
Aantal Installaties 97
Huidige Versie 1.0.4
Laatst Bijgewerkt 2022-02-17
Publicatiedatum 2021-08-30
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://shinychang.net
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gather Mute Shortcut",
    "description": "Press SPACE to talk and custom shortcut to toggle mute",
    "version": "1.0.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.gather.town\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "commands": {
        "toggleMute": {
            "suggested_key": {
                "default": "Ctrl+D",
                "mac": "Command+D"
            },
            "description": "Toggle Mic on\/off"
        }
    }
}