Twitch Audio Controller
An Audio Controller for all twitch streams currently opened on the Chrome window
What is Twitch Audio Controller?
Twitch Audio Controller is a Chrome extension developed by Yrk06, and its main feature is "An Audio Controller for all twitch streams currently opened on the Chrome window".
Extension Screenshots
Download Twitch Audio Controller Extension CRX File
Download Twitch Audio Controller extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Twitch Audio Controller |
ID | kbekjcnajpgipojaddlaedceecednfhi |
Official URL | https://chromewebstore.google.com/detail/twitch-audio-controller/kbekjcnajpgipojaddlaedceecednfhi |
Description | An Audio Controller for all twitch streams currently opened on the Chrome window |
File Size | 195 KB |
Installation Count | 45 |
Current Version | 0.1.0 |
Last Updated | 2021-05-17 |
Publish Date | 2021-05-16 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Yrk06 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |