Twitch.tv Per Channel Audio
Enables having different audio settings per channel.
Twitch.tv Per Channel Audio क्या है?
Twitch.tv Per Channel Audio deastr.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enables having different audio settings per channel."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitch.tv Per Channel Audio एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |