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文件

下載Twitch Multi Stream Auto-Mute擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}