Twitch.tv Per Channel Audio
Enables having different audio settings per channel.
Twitch.tv Per Channel Audio란 무엇입니까?
Twitch.tv Per Channel Audio은(는) deastr.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables having different audio settings per channel."입니다.
확장 프로그램 스크린샷
Twitch.tv Per Channel Audio 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |