Audio Compressor
Compress audio to make sound volumes more even
Audio Compressor란 무엇입니까?
Audio Compressor은(는) vatara420에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Compress audio to make sound volumes more even"입니다.
확장 프로그램 스크린샷
Audio Compressor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Audio Compressor is an addon that uses dynamic range compression to make sound volumes more even. There are presets for different levels of compression. You can customize the default settings or the settings for a specific site or page. There are some sites it doesn't work with, cross-origin browser security blocks scripts from modifying audio/video from a different host. As far as I know there's no way around this. This works by using the Web Audio API to get the audio context for a page, and inserting a DynamicsCompressorNode.
확장 프로그램 기본 정보
이름 | Audio Compressor |
ID | daomidlfpcfjchpalpjogmnhabkekbnn |
공식 URL | https://chromewebstore.google.com/detail/audio-compressor/daomidlfpcfjchpalpjogmnhabkekbnn |
설명 | Compress audio to make sound volumes more even |
파일 크기 | 61.37 KB |
설치 횟수 | 8,800 |
현재 버전 | 0.1.26 |
최근 업데이트 | 2023-12-19 |
출시 날짜 | 2020-10-27 |
평점 | 4.16/5 총 70 개의 평점 |
개발자 | vatara420 |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/vatara/firefox-audio-compressor |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.1.26", "name": "Audio Compressor", "description": "Compress audio to make sound volumes more even", "permissions": [ "tabs", "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "data\/inject.js" ] } ], "icons": { "16": "data\/icons\/logo-mid-active-16.png", "32": "data\/icons\/logo-mid-active-32.png", "48": "data\/icons\/logo-mid-active-48.png", "64": "data\/icons\/logo-mid-active-64.png", "128": "data\/icons\/logo-mid-active-128.png" }, "browser_action": { "browser_style": true, "default_icon": { "16": "data\/icons\/logo-mid-16.png", "32": "data\/icons\/logo-mid-32.png", "48": "data\/icons\/logo-mid-48.png", "64": "data\/icons\/logo-mid-64.png", "128": "data\/icons\/logo-mid-128.png" }, "default_popup": "data\/popup\/index.html", "theme_icons": [ { "dark": "data\/icons\/logo-dark.svg", "light": "data\/icons\/logo-light.svg", "size": 16 } ] } } |