Twitch Audio Controller
An Audio Controller for all twitch streams currently opened on the Chrome window
Was ist Twitch Audio Controller?
Twitch Audio Controller ist eine Chrome-Erweiterung, die von Yrk06 entwickelt wurde, und ihr Hauptmerkmal ist "An Audio Controller for all twitch streams currently opened on the Chrome window".
Erweiterungsscreenshots
Twitch Audio Controller-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitch Audio Controller-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Twitch Audio Controller |
ID | kbekjcnajpgipojaddlaedceecednfhi |
Offizielle URL | https://chromewebstore.google.com/detail/twitch-audio-controller/kbekjcnajpgipojaddlaedceecednfhi |
Beschreibung | An Audio Controller for all twitch streams currently opened on the Chrome window |
Dateigröße | 195 KB |
Installationsanzahl | 45 |
Aktuelle Version | 0.1.0 |
Letztes Update | 2021-05-17 |
Veröffentlichungsdatum | 2021-05-16 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | Yrk06 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |