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”。

扩展截图

screenshot

下载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 Gather Mute Shortcut
ID ohhjbipfhipcebhjkcbodeilfgekihpj
官方URL 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"
        }
    }
}