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

下载Twitch Audio Suppressor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
    }
}