Twitch Audio Controller
An Audio Controller for all twitch streams currently opened on the Chrome window
Vad är Twitch Audio Controller?
Twitch Audio Controller är en Chrome-tillägg utvecklad av Yrk06, och dess huvudfunktion är "An Audio Controller for all twitch streams currently opened on the Chrome window".
Tilläggsskärmbilder
Ladda ner Twitch Audio Controller-förlängningens CRX-fil
Ladda ner Twitch Audio Controller-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | kbekjcnajpgipojaddlaedceecednfhi |
| Officiell webbadress | https://chromewebstore.google.com/detail/twitch-audio-controller/kbekjcnajpgipojaddlaedceecednfhi |
| Beskrivning | An Audio Controller for all twitch streams currently opened on the Chrome window |
| Filstorlek | 195 KB |
| Antal Installationer | 45 |
| Aktuell Version | 0.1.0 |
| Senast Uppdaterad | 2021-05-17 |
| Publiceringsdatum | 2021-05-16 |
| Betyg | 3.00/5 Totalt 2 Betyg |
| Utvecklare | Yrk06 |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
} | |