Gather Mic Toggle

Mic Toggle on gather.town

Vad är Gather Mic Toggle?

Gather Mic Toggle är en Chrome-tillägg utvecklad av Caio Rodrigues, och dess huvudfunktion är "Mic Toggle on gather.town".

Tilläggsskärmbilder

screenshot

Ladda ner Gather Mic Toggle-förlängningens CRX-fil

Ladda ner Gather Mic Toggle-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Gather Mic Toggle Gather Mic Toggle
ID dicgdmbehbkbkncebodffnhkgoaebpoo
Officiell webbadress https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo
Beskrivning Mic Toggle on gather.town
Filstorlek 15.3 KB
Antal Installationer 86
Aktuell Version 1.0
Senast Uppdaterad 2021-04-20
Publiceringsdatum 2021-04-19
Utvecklare Caio Rodrigues
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}