Twitch.tv Per Channel Audio

Enables having different audio settings per channel.

Twitch.tv Per Channel Audioとは何ですか?

Twitch.tv Per Channel Audioはdeastr.devによって開発されたChromeの拡張機能で、その主な機能は「Enables having different audio settings per channel.」です。

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

screenshot
screenshot

Twitch.tv Per Channel Audio拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension lets you set different audio options for each channel. It has two options:

- Set volume
- Use FrankerFaceZ Audio Compressor (if FFZ is installed)

VOD and Clip pages are not supported.                    

拡張機能の基本情報

名前 Twitch.tv Per Channel Audio Twitch.tv Per Channel Audio
ID fhfieblkaafmpdlenpjcihlfckabgkck
公式URL https://chromewebstore.google.com/detail/twitchtv-per-channel-audi/fhfieblkaafmpdlenpjcihlfckabgkck
説明 Enables having different audio settings per channel.
ファイルサイズ 23.56 KB
インストール数 43
現在のバージョン 1.0.0
最終更新日 2022-12-06
公開日 2022-12-04
開発者 deastr.dev
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/deastr/TwitchPerChannelAudio
対応言語 en,tr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "author": "deastr",
    "manifest_version": 3,
    "version": "1.0.0",
    "homepage_url": "https:\/\/github.com\/deastr\/TwitchPerChannelAudio",
    "icons": {
        "32": "icons\/icon32.png",
        "36": "icons\/icon36.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "browser-polyfill-for-chrome.min.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "action": {
        "browser_style": true,
        "default_title": "__MSG_extensionPopUpTitle__",
        "default_popup": "channel_settings.html",
        "default_icon": {
            "32": "icons\/icon32.png",
            "36": "icons\/icon36.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "show_matches": [
            "*:\/\/*.twitch.tv\/*"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "declarativeContent"
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "default_locale": "en",
    "web_accessible_resources": [
        {
            "resources": [
                "content-inline.js"
            ],
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background-chrome.js"
    }
}