Gather Mic Toggle

Mic Toggle on gather.town

Cos'è Gather Mic Toggle?

Gather Mic Toggle è un'estensione di Chrome sviluppata da Caio Rodrigues, e la sua funzione principale è "Mic Toggle on gather.town".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Gather Mic Toggle

Scarica i file di estensione Gather Mic Toggle 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

                        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                    

Informazioni di Base sull'Estensione

Nome Gather Mic Toggle Gather Mic Toggle
ID dicgdmbehbkbkncebodffnhkgoaebpoo
URL Ufficiale https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo
Descrizione Mic Toggle on gather.town
Dimensione del File 15.3 KB
Conteggio Installazioni 86
Versione Corrente 1.0
Ultimo Aggiornamento 2021-04-20
Data di Pubblicazione 2021-04-19
Sviluppatore Caio Rodrigues
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}