Twitch Audio Controller

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

Wat is Twitch Audio Controller?

Twitch Audio Controller is een Chrome-extensie ontwikkeld door Yrk06, en de belangrijkste functie is "An Audio Controller for all twitch streams currently opened on the Chrome window".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Twitch Audio Controller

Download Twitch Audio Controller-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Twitch Audio Controller Twitch Audio Controller
ID kbekjcnajpgipojaddlaedceecednfhi
Officiële URL https://chromewebstore.google.com/detail/twitch-audio-controller/kbekjcnajpgipojaddlaedceecednfhi
Beschrijving An Audio Controller for all twitch streams currently opened on the Chrome window
Bestandsgrootte 195 KB
Aantal Installaties 45
Huidige Versie 0.1.0
Laatst Bijgewerkt 2021-05-17
Publicatiedatum 2021-05-16
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Yrk06
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}