Twitch Audio Controller
An Audio Controller for all twitch streams currently opened on the Chrome window
Qu'est-ce que Twitch Audio Controller ?
Twitch Audio Controller est une extension Chrome développée par Yrk06, et sa fonction principale est "An Audio Controller for all twitch streams currently opened on the Chrome window".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitch Audio Controller
Téléchargez les fichiers d'extension Twitch Audio Controller au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Twitch Audio Controller |
ID | kbekjcnajpgipojaddlaedceecednfhi |
URL Officiel | https://chromewebstore.google.com/detail/twitch-audio-controller/kbekjcnajpgipojaddlaedceecednfhi |
Description | An Audio Controller for all twitch streams currently opened on the Chrome window |
Taille du Fichier | 195 KB |
Nombre d'Installations | 45 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2021-05-17 |
Date de Publication | 2021-05-16 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | Yrk06 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |