Gather Mute Shortcut
Press SPACE to talk and custom shortcut to toggle mute
什麼是Gather Mute Shortcut?
Gather Mute Shortcut是由https://shinychang.net開發的Chrome擴展程式,該擴展的主要功能是“Press SPACE to talk and custom shortcut to toggle mute”。
擴展截圖
下載Gather Mute Shortcut擴展crx文件
下載Gather Mute Shortcut擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Press SPACE to un-mute Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic
擴展基本資訊
名稱 | Gather Mute Shortcut |
ID | ohhjbipfhipcebhjkcbodeilfgekihpj |
官方網址 | https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj |
簡介 | Press SPACE to talk and custom shortcut to toggle mute |
檔案大小 | 5.41 KB |
安裝次數 | 97 |
目前版本 | 1.0.4 |
更新時間 | 2022-02-17 |
上架時間 | 2021-08-30 |
評分 | 5.00/5 共 2 次評分 |
開發者 | https://shinychang.net |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" } } } |