Gather Mute Shortcut

Press SPACE to talk and custom shortcut to toggle mute

Qu'est-ce que Gather Mute Shortcut ?

Gather Mute Shortcut est une extension Chrome développée par https://shinychang.net, et sa fonction principale est "Press SPACE to talk and custom shortcut to toggle mute".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Gather Mute Shortcut

Téléchargez les fichiers d'extension Gather Mute Shortcut au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Gather Mute Shortcut Gather Mute Shortcut
ID ohhjbipfhipcebhjkcbodeilfgekihpj
URL Officiel https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj
Description Press SPACE to talk and custom shortcut to toggle mute
Taille du Fichier 5.41 KB
Nombre d'Installations 97
Version Actuelle 1.0.4
Dernière Mise à Jour 2022-02-17
Date de Publication 2021-08-30
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://shinychang.net
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    }
}