Gather Mute Shortcut

Press SPACE to talk and custom shortcut to toggle mute

Cos'è Gather Mute Shortcut?

Gather Mute Shortcut è un'estensione di Chrome sviluppata da https://shinychang.net, e la sua funzione principale è "Press SPACE to talk and custom shortcut to toggle mute".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Gather Mute Shortcut

Scarica i file di estensione Gather Mute Shortcut in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Gather Mute Shortcut Gather Mute Shortcut
ID ohhjbipfhipcebhjkcbodeilfgekihpj
URL Ufficiale https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj
Descrizione Press SPACE to talk and custom shortcut to toggle mute
Dimensione del File 5.41 KB
Conteggio Installazioni 97
Versione Corrente 1.0.4
Ultimo Aggiornamento 2022-02-17
Data di Pubblicazione 2021-08-30
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://shinychang.net
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    }
}