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. 扩展基本信息
| 名称 | |
| 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
}
}
} | |