WebSocket Tab Muter

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

WebSocket Tab Muter क्या है?

WebSocket Tab Muter rosuav द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "In response to a signal from a websocket or hotkey, mutes/unmutes all tabs"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WebSocket Tab Muter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम WebSocket Tab Muter WebSocket Tab Muter
ID fkchodnonbibmpdohfedhflalajgebkf
आधिकारिक URL https://chromewebstore.google.com/detail/websocket-tab-muter/fkchodnonbibmpdohfedhflalajgebkf
विवरण In response to a signal from a websocket or hotkey, mutes/unmutes all tabs
फ़ाइल का आकार 5.88 KB
स्थापना संख्या 120
वर्तमान संस्करण 0.4
अंतिम अपडेट 2022-07-22
प्रकाशन तिथि 2020-06-08
डेवलपर rosuav
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Rosuav/csgo_automute.git
समर्थित भाषाएँ 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
        }
    }
}