WebSocket Tab Muter

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

WebSocket Tab Muter là gì?

WebSocket Tab Muter là một tiện ích mở rộng Chrome được phát triển bởi rosuav, và tính năng chính của nó là "In response to a signal from a websocket or hotkey, mutes/unmutes all tabs".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng WebSocket Tab Muter

Tải xuống các tệp mở rộng WebSocket Tab Muter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WebSocket Tab Muter WebSocket Tab Muter
ID fkchodnonbibmpdohfedhflalajgebkf
URL Chính Thức https://chromewebstore.google.com/detail/websocket-tab-muter/fkchodnonbibmpdohfedhflalajgebkf
Mô tả In response to a signal from a websocket or hotkey, mutes/unmutes all tabs
Kích Thước Tệp 5.88 KB
Số Lần Cài Đặt 120
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2022-07-22
Ngày Phát Hành 2020-06-08
Nhà Phát Triển rosuav
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Rosuav/csgo_automute.git
Ngôn Ngữ Được Hỗ Trợ 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
        }
    }
}