Gather Mute Shortcut
Press SPACE to talk and custom shortcut to toggle mute
Vad är Gather Mute Shortcut?
Gather Mute Shortcut är en Chrome-tillägg utvecklad av https://shinychang.net, och dess huvudfunktion är "Press SPACE to talk and custom shortcut to toggle mute".
Tilläggsskärmbilder
Ladda ner Gather Mute Shortcut-förlängningens CRX-fil
Ladda ner Gather Mute Shortcut-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
Press SPACE to un-mute
Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic Grundläggande Information om Tillägg
| Namn | |
| ID | ohhjbipfhipcebhjkcbodeilfgekihpj |
| Officiell webbadress | https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj |
| Beskrivning | Press SPACE to talk and custom shortcut to toggle mute |
| Filstorlek | 5.41 KB |
| Antal Installationer | 97 |
| Aktuell Version | 1.0.4 |
| Senast Uppdaterad | 2022-02-17 |
| Publiceringsdatum | 2021-08-30 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | https://shinychang.net |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
}
} | |