Twitch Audio Controller

An Audio Controller for all twitch streams currently opened on the Chrome window

什么是Twitch Audio Controller?

Twitch Audio Controller是由Yrk06开发的Chrome扩展程序,该扩展的主要功能是“An Audio Controller for all twitch streams currently opened on the Chrome window”。

扩展截图

screenshot

下载Twitch Audio Controller扩展crx文件

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

扩展使用说明

                        Twitch Audio Controller adds a new way to manage the volume and balance of all twitch streams currently open on the chrome window. Do you want to listen to a background music stream while watching you favorite streamer? We got you                    

扩展基本信息

名称 Twitch Audio Controller Twitch Audio Controller
ID kbekjcnajpgipojaddlaedceecednfhi
官方URL https://chromewebstore.google.com/detail/twitch-audio-controller/kbekjcnajpgipojaddlaedceecednfhi
简介 An Audio Controller for all twitch streams currently opened on the Chrome window
文件大小 195 KB
安装次数 45
当前版本 0.1.0
更新时间 2021-05-17
上架时间 2021-05-16
评分 3.00/5 共2次评分
开发者 Yrk06
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Audio Controller",
    "description": "An Audio Controller for all twitch streams currently opened on the Chrome window",
    "version": "0.1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "backend.js"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "action": {
        "default_popup": "src\/ui\/popup\/index.html"
    },
    "content_scripts": [
        {
            "js": [
                "twitch.js"
            ],
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon_small.png",
        "128": "icon.png"
    }
}