Twitch.tv Per Channel Audio
Enables having different audio settings per channel.
Hvad er Twitch.tv Per Channel Audio?
Twitch.tv Per Channel Audio er en Chrome-udvidelse udviklet af deastr.dev, og dens hovedfunktion er "Enables having different audio settings per channel.".
Udvidelsesskærmbilleder
Download Twitch.tv Per Channel Audio-udvidelses-CRX-fil
Download Twitch.tv Per Channel Audio-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Twitch.tv Per Channel Audio |
ID | fhfieblkaafmpdlenpjcihlfckabgkck |
Officiel URL | https://chromewebstore.google.com/detail/twitchtv-per-channel-audi/fhfieblkaafmpdlenpjcihlfckabgkck |
Beskrivelse | Enables having different audio settings per channel. |
Filstørrelse | 23.56 KB |
Antal Installationer | 43 |
Nuværende Version | 1.0.0 |
Senest Opdateret | 2022-12-06 |
Udgivelsesdato | 2022-12-04 |
Udvikler | deastr.dev |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/deastr/TwitchPerChannelAudio |
Understøttede Sprog | 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" } } |