WebSocket Tab Muter

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

Qu'est-ce que WebSocket Tab Muter ?

WebSocket Tab Muter est une extension Chrome développée par rosuav, et sa fonction principale est "In response to a signal from a websocket or hotkey, mutes/unmutes all tabs".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension WebSocket Tab Muter

Téléchargez les fichiers d'extension WebSocket Tab Muter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom WebSocket Tab Muter WebSocket Tab Muter
ID fkchodnonbibmpdohfedhflalajgebkf
URL Officiel https://chromewebstore.google.com/detail/websocket-tab-muter/fkchodnonbibmpdohfedhflalajgebkf
Description In response to a signal from a websocket or hotkey, mutes/unmutes all tabs
Taille du Fichier 5.88 KB
Nombre d'Installations 120
Version Actuelle 0.4
Dernière Mise à Jour 2022-07-22
Date de Publication 2020-06-08
Développeur rosuav
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Rosuav/csgo_automute.git
Langues Prises en Charge 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
        }
    }
}