Twitch Audio Controller

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

Cos'è Twitch Audio Controller?

Twitch Audio Controller è un'estensione di Chrome sviluppata da Yrk06, e la sua funzione principale è "An Audio Controller for all twitch streams currently opened on the Chrome window".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitch Audio Controller

Scarica i file di estensione Twitch Audio Controller in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Twitch Audio Controller Twitch Audio Controller
ID kbekjcnajpgipojaddlaedceecednfhi
URL Ufficiale https://chromewebstore.google.com/detail/twitch-audio-controller/kbekjcnajpgipojaddlaedceecednfhi
Descrizione An Audio Controller for all twitch streams currently opened on the Chrome window
Dimensione del File 195 KB
Conteggio Installazioni 45
Versione Corrente 0.1.0
Ultimo Aggiornamento 2021-05-17
Data di Pubblicazione 2021-05-16
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore Yrk06
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}