Twitch Audio Controller

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

Apa itu Twitch Audio Controller?

Twitch Audio Controller adalah ekstensi Chrome yang dikembangkan oleh Yrk06, dan fitur utamanya adalah "An Audio Controller for all twitch streams currently opened on the Chrome window".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Twitch Audio Controller

Unduh file ekstensi Twitch Audio Controller dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Twitch Audio Controller Twitch Audio Controller
ID kbekjcnajpgipojaddlaedceecednfhi
URL Resmi https://chromewebstore.google.com/detail/twitch-audio-controller/kbekjcnajpgipojaddlaedceecednfhi
Deskripsi An Audio Controller for all twitch streams currently opened on the Chrome window
Ukuran File 195 KB
Jumlah Instalasi 45
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2021-05-17
Tanggal Publikasi 2021-05-16
Penilaian 3.00/5 Total 2 Penilaian
Pengembang Yrk06
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}