Twitch Audio Suppressor

Automatically mutes all active Twitch tabs except the one in focus.

Twitch Audio Suppressor란 무엇입니까?

Twitch Audio Suppressor은(는) Swampfox에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically mutes all active Twitch tabs except the one in focus."입니다.

확장 프로그램 스크린샷

Twitch Audio Suppressor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Simple extension that listens for tabs playing audio from Twitch and only allows the active tab within the active window to play, muting all others.  I use it all the time when switching between multiple streams.                    

확장 프로그램 기본 정보

이름 Twitch Audio Suppressor Twitch Audio Suppressor
ID bkjppbhjfbafpamcciabdjkemkbkhcjb
공식 URL https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb
설명 Automatically mutes all active Twitch tabs except the one in focus.
파일 크기 35.77 KB
설치 횟수 75
현재 버전 1.1
최근 업데이트 2020-09-15
출시 날짜 2020-04-22
개발자 Swampfox
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Audio Suppressor",
    "description": "Automatically mutes all active Twitch tabs except the one in focus.",
    "version": "1.1",
    "icons": {
        "128": "icon3_128.png",
        "48": "icon3_48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.twitch.tv\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js",
                "avatarFetcher.js",
                "menu.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/twitch.tv\/*",
        "activeTab",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}