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