Twitch Audio Controller

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

Twitch Audio Controllerとは何ですか?

Twitch Audio ControllerはYrk06によって開発されたChromeの拡張機能で、その主な機能は「An Audio Controller for all twitch streams currently opened on the Chrome window」です。

拡張機能のスクリーンショット

screenshot

Twitch Audio Controller拡張機能のCRXファイルをダウンロード

Twitch Audio Controller拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Twitch Audio Controller Twitch Audio Controller
ID kbekjcnajpgipojaddlaedceecednfhi
公式URL https://chromewebstore.google.com/detail/twitch-audio-controller/kbekjcnajpgipojaddlaedceecednfhi
説明 An Audio Controller for all twitch streams currently opened on the Chrome window
ファイルサイズ 195 KB
インストール数 45
現在のバージョン 0.1.0
最終更新日 2021-05-17
公開日 2021-05-16
評価 3.00/5 合計 2 レビュー
開発者 Yrk06
Eメール [email protected]
支払い方法 free
対応言語 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"
    }
}