Twitch.tv Per Channel Audio

Enables having different audio settings per channel.

ما هو Twitch.tv Per Channel Audio؟

Twitch.tv Per Channel Audio هو إضافة Chrome تم تطويرها بواسطة deastr.dev، والميزة الرئيسية لها هي "Enables having different audio settings per channel.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Twitch.tv Per Channel Audio

قم بتنزيل ملفات الامتداد Twitch.tv Per Channel Audio بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [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"
    }
}