WebSocket Tab Muter
In response to a signal from a websocket or hotkey, mutes/unmutes all tabs
WebSocket Tab Muterとは何ですか?
WebSocket Tab Muterはrosuavによって開発されたChromeの拡張機能で、その主な機能は「In response to a signal from a websocket or hotkey, mutes/unmutes all tabs」です。
拡張機能のスクリーンショット
WebSocket Tab Muter拡張機能のCRXファイルをダウンロード
WebSocket Tab Muter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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 } } } |