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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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 } } } |