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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch.tv Per Channel Audio
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" } } |