Gather Mute Shortcut

Press SPACE to talk and custom shortcut to toggle mute

O que é Gather Mute Shortcut?

Gather Mute Shortcut é uma extensão do Chrome desenvolvida por https://shinychang.net, e sua principal característica é "Press SPACE to talk and custom shortcut to toggle mute".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Gather Mute Shortcut

Baixe arquivos de extensão Gather Mute Shortcut no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Press SPACE to un-mute
Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic                    

Informações Básicas da Extensão

Nome Gather Mute Shortcut Gather Mute Shortcut
ID ohhjbipfhipcebhjkcbodeilfgekihpj
URL Oficial https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj
Descrição Press SPACE to talk and custom shortcut to toggle mute
Tamanho do Arquivo 5.41 KB
Contagem de Instalações 97
Versão Atual 1.0.4
Última Atualização 2022-02-17
Data de Publicação 2021-08-30
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://shinychang.net
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    }
}