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
官方網址 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
電子郵箱 [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"
    }
}