Twitch Audio Controller

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

Co to jest Twitch Audio Controller?

Twitch Audio Controller to rozszerzenie Chrome opracowane przez Yrk06, a jego główną funkcją jest „An Audio Controller for all twitch streams currently opened on the Chrome window”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Twitch Audio Controller

Pobierz pliki rozszerzeń Twitch Audio Controller w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitch Audio Controller Twitch Audio Controller
ID kbekjcnajpgipojaddlaedceecednfhi
Oficjalny URL https://chromewebstore.google.com/detail/twitch-audio-controller/kbekjcnajpgipojaddlaedceecednfhi
Opis An Audio Controller for all twitch streams currently opened on the Chrome window
Rozmiar pliku 195 KB
Liczba instalacji 45
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2021-05-17
Data Publikacji 2021-05-16
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper Yrk06
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}