Twitch Audio Controller

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

Twitch Audio Controller là gì?

Twitch Audio Controller là một tiện ích mở rộng Chrome được phát triển bởi Yrk06, và tính năng chính của nó là "An Audio Controller for all twitch streams currently opened on the Chrome window".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Twitch Audio Controller

Tải xuống các tệp mở rộng Twitch Audio Controller dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitch Audio Controller Twitch Audio Controller
ID kbekjcnajpgipojaddlaedceecednfhi
URL Chính Thức https://chromewebstore.google.com/detail/twitch-audio-controller/kbekjcnajpgipojaddlaedceecednfhi
Mô tả An Audio Controller for all twitch streams currently opened on the Chrome window
Kích Thước Tệp 195 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2021-05-17
Ngày Phát Hành 2021-05-16
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Yrk06
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}