Gather Mute Shortcut
Press SPACE to talk and custom shortcut to toggle mute
Hvad er Gather Mute Shortcut?
Gather Mute Shortcut er en Chrome-udvidelse udviklet af https://shinychang.net, og dens hovedfunktion er "Press SPACE to talk and custom shortcut to toggle mute".
Udvidelsesskærmbilleder
Download Gather Mute Shortcut-udvidelses-CRX-fil
Download Gather Mute Shortcut-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Press SPACE to un-mute Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic
Grundlæggende oplysninger om udvidelsen
Navn | Gather Mute Shortcut |
ID | ohhjbipfhipcebhjkcbodeilfgekihpj |
Officiel URL | https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj |
Beskrivelse | Press SPACE to talk and custom shortcut to toggle mute |
Filstørrelse | 5.41 KB |
Antal Installationer | 97 |
Nuværende Version | 1.0.4 |
Senest Opdateret | 2022-02-17 |
Udgivelsesdato | 2021-08-30 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | https://shinychang.net |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } } } |