Twitch.tv Per Channel Audio

Enables having different audio settings per channel.

Twitch.tv Per Channel Audio là gì?

Twitch.tv Per Channel Audio là một tiện ích mở rộng Chrome được phát triển bởi deastr.dev, và tính năng chính của nó là "Enables having different audio settings per channel.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Twitch.tv Per Channel Audio 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

                        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.                    

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

Tên Twitch.tv Per Channel Audio Twitch.tv Per Channel Audio
ID fhfieblkaafmpdlenpjcihlfckabgkck
URL Chính Thức https://chromewebstore.google.com/detail/twitchtv-per-channel-audi/fhfieblkaafmpdlenpjcihlfckabgkck
Mô tả Enables having different audio settings per channel.
Kích Thước Tệp 23.56 KB
Số Lần Cài Đặt 43
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-12-06
Ngày Phát Hành 2022-12-04
Nhà Phát Triển deastr.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/deastr/TwitchPerChannelAudio
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}