Gather Mute Shortcut

Press SPACE to talk and custom shortcut to toggle mute

Was ist Gather Mute Shortcut?

Gather Mute Shortcut ist eine Chrome-Erweiterung, die von https://shinychang.net entwickelt wurde, und ihr Hauptmerkmal ist "Press SPACE to talk and custom shortcut to toggle mute".

Erweiterungsscreenshots

screenshot

Gather Mute Shortcut-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gather Mute Shortcut-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Gather Mute Shortcut Gather Mute Shortcut
ID ohhjbipfhipcebhjkcbodeilfgekihpj
Offizielle URL https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj
Beschreibung Press SPACE to talk and custom shortcut to toggle mute
Dateigröße 5.41 KB
Installationsanzahl 97
Aktuelle Version 1.0.4
Letztes Update 2022-02-17
Veröffentlichungsdatum 2021-08-30
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://shinychang.net
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    }
}