Twitch Multi Stream Auto-Mute

Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.

Twitch Multi Stream Auto-Mute란 무엇입니까?

Twitch Multi Stream Auto-Mute은(는) Mickaël Allonneau에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once."입니다.

확장 프로그램 스크린샷

screenshot

Twitch Multi Stream Auto-Mute 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to follow multiple Twitch streams at once without hearing the sound of all open streams, but only the one you're currently watching.

Every time you switch tab to another Twitch stream, the one you leave is automatically muted and the one you start watching is automatically unmuted. So whether you have 1, 2 or 10 streams open in 10 different tabs, you'll only ever hear the sound of the one you're currently on.                    

확장 프로그램 기본 정보

이름 Twitch Multi Stream Auto-Mute Twitch Multi Stream Auto-Mute
ID dnjockganjfnlkfengbekkkbplpfpold
공식 URL https://chromewebstore.google.com/detail/twitch-multi-stream-auto/dnjockganjfnlkfengbekkkbplpfpold
설명 Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.
파일 크기 5.83 KB
설치 횟수 171
현재 버전 1.1.1
최근 업데이트 2023-09-01
출시 날짜 2021-05-08
평점 4.67/5 총 3 개의 평점
개발자 Mickaël Allonneau
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/flawyte/twitch-multi-stream-auto-mute
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Multi Stream Auto-Mute",
    "version": "1.1.1",
    "description": "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.",
    "icons": {
        "128": "icon\/128.png"
    },
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "tabs"
    ]
}