Gather Mic Toggle

Mic Toggle on gather.town

Gather Mic Toggle क्या है?

Gather Mic Toggle Caio Rodrigues द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Mic Toggle on gather.town"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Gather Mic Toggle एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Gather Mic Toggle Gather Mic Toggle
ID dicgdmbehbkbkncebodffnhkgoaebpoo
आधिकारिक URL https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo
विवरण Mic Toggle on gather.town
फ़ाइल का आकार 15.3 KB
स्थापना संख्या 86
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-04-20
प्रकाशन तिथि 2021-04-19
डेवलपर Caio Rodrigues
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}