WebSocket Tab Muter

In response to a signal from a websocket or hotkey, mutes/unmutes all tabs

O que é WebSocket Tab Muter?

WebSocket Tab Muter é uma extensão do Chrome desenvolvida por rosuav, e sua principal característica é "In response to a signal from a websocket or hotkey, mutes/unmutes all tabs".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão WebSocket Tab Muter

Baixe arquivos de extensão WebSocket Tab Muter 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

                        Tab muter and unmuter based on hotkeys and/or a websocket. Can tie in with a CS:GO Game State Integration service to control Chrome audio based on your in-game status, or can be used independently as a convenient way to mute/unmute individual tabs or to quickly silence all of Chrome.

Also, for no particular reason, incorporates a "close other tabs" feature. Set a hotkey to close everything in the current window except the active tab.                    

Informações Básicas da Extensão

Nome WebSocket Tab Muter WebSocket Tab Muter
ID fkchodnonbibmpdohfedhflalajgebkf
URL Oficial https://chromewebstore.google.com/detail/websocket-tab-muter/fkchodnonbibmpdohfedhflalajgebkf
Descrição In response to a signal from a websocket or hotkey, mutes/unmutes all tabs
Tamanho do Arquivo 5.88 KB
Contagem de Instalações 120
Versão Atual 0.4
Última Atualização 2022-07-22
Data de Publicação 2020-06-08
Desenvolvedor rosuav
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Rosuav/csgo_automute.git
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "WebSocket Tab Muter",
    "description": "In response to a signal from a websocket or hotkey, mutes\/unmutes all tabs",
    "version": "0.4",
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "muter.js"
    },
    "commands": {
        "close-other-tabs": {
            "description": "Close all other tabs in the current window"
        },
        "mute-tab": {
            "suggested_key": {
                "default": "Ctrl+M"
            },
            "description": "Mute\/unmute the current tab"
        },
        "keep-tab": {
            "suggested_key": {
                "default": "Ctrl+U"
            },
            "description": "Keep the current tab unmuted for the next 30 secs (ignores the mute-all signal)"
        },
        "mute-now": {
            "suggested_key": {
                "default": "Ctrl+Shift+5"
            },
            "description": "Automute all noisy tabs now",
            "global": true
        },
        "unmute-now": {
            "suggested_key": {
                "default": "Ctrl+Shift+6"
            },
            "description": "Unmute all automuted tabs",
            "global": true
        }
    }
}