Gather Mute Shortcut
Press SPACE to talk and custom shortcut to toggle mute
What is Gather Mute Shortcut?
Gather Mute Shortcut is a Chrome extension developed by https://shinychang.net, and its main feature is "Press SPACE to talk and custom shortcut to toggle mute".
Extension Screenshots
Download Gather Mute Shortcut Extension CRX File
Download Gather Mute Shortcut 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
Press SPACE to un-mute Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic
Extension Basic Information
Name | Gather Mute Shortcut |
ID | ohhjbipfhipcebhjkcbodeilfgekihpj |
Official URL | https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj |
Description | Press SPACE to talk and custom shortcut to toggle mute |
File Size | 5.41 KB |
Installation Count | 97 |
Current Version | 1.0.4 |
Last Updated | 2022-02-17 |
Publish Date | 2021-08-30 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://shinychang.net |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } } |