Gather Mic Toggle
Mic Toggle on gather.town
What is Gather Mic Toggle?
Gather Mic Toggle is a Chrome extension developed by Caio Rodrigues, and its main feature is "Mic Toggle on gather.town".
Extension Screenshots
Download Gather Mic Toggle Extension CRX File
Download Gather Mic Toggle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Gather Mic Toggle |
ID | dicgdmbehbkbkncebodffnhkgoaebpoo |
Official URL | https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo |
Description | Mic Toggle on gather.town |
File Size | 15.3 KB |
Installation Count | 86 |
Current Version | 1.0 |
Last Updated | 2021-04-20 |
Publish Date | 2021-04-19 |
Developer | Caio Rodrigues |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |