Twitch Muter
Only plays audio of active twitch tab
Twitch Muter란 무엇입니까?
Twitch Muter은(는) Meeoh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Only plays audio of active twitch tab"입니다.
확장 프로그램 스크린샷
Twitch Muter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Mutes inactive twitch tabs! If you ever have multiple twitch streams open at once in different tabs, but only want the active tab to have audio playing, just activate the extension via the icon in the top right, and voila! ***IMPORTANT*** With all your twitch tabs open, activate the extension and they'll all become muted, now whenever you switch tabs to a twitch stream, its audio will be activated. Report issues here: https://github.com/meeoh/TwitchMuter/issues View changelog here: https://github.com/meeoh/TwitchMuter/wiki/Chrome-Extension-Change-Log
확장 프로그램 기본 정보
이름 | Twitch Muter |
ID | gcikmdppgicmifbcngddbhcfmnecnejf |
공식 URL | https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf |
설명 | Only plays audio of active twitch tab |
파일 크기 | 82.98 KB |
설치 횟수 | 64 |
현재 버전 | 1.3 |
최근 업데이트 | 2016-10-19 |
출시 날짜 | 2016-10-19 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | Meeoh |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/meeoh/TwitchMuter |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Muter", "description": "Only plays audio of active twitch tab", "version": "1.3", "permissions": [ "activeTab", "http:\/\/*\/", "https:\/\/*\/" ], "background": { "scripts": [ "jquery-3.1.1.js", "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "jquery-3.1.1.js", "content_script.js" ] } ], "browser_action": { "default_title": "Toggle", "default_icon": "volumeOff.png" }, "manifest_version": 2 } |