Youtube Audio Compressor

A simple Youtube extension that compresses video audio sound levels

Youtube Audio Compressor란 무엇입니까?

Youtube Audio Compressor은(는) https://dancodes.online에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple Youtube extension that compresses video audio sound levels"입니다.

확장 프로그램 스크린샷

screenshot

Youtube Audio Compressor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The easiest way to compress YouTube audio. 

Often when browsing YouTube, some videos are quiet and others are extremely loud 🔊 
This extension seeks to fix this issue by compressing the audio, therefore levelling all videos to a similar volume, all in the aid of your ears. 

🚀 Features
  - Boost quiet videos
  - Compress loud videos
  - Integrated into the YouTube player                    

확장 프로그램 기본 정보

이름 Youtube Audio Compressor Youtube Audio Compressor
ID henggpklijhpgacenhcmoffgnhbblgag
공식 URL https://chromewebstore.google.com/detail/youtube-audio-compressor/henggpklijhpgacenhcmoffgnhbblgag
설명 A simple Youtube extension that compresses video audio sound levels
파일 크기 28.2 KB
설치 횟수 3,450
현재 버전 1.0.2
최근 업데이트 2023-04-12
출시 날짜 2022-10-05
평점 4.22/5 총 36 개의 평점
개발자 https://dancodes.online
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dan-online/youtubeaudiocompressor
도움말 페이지 URL https://github.com/dan-online/youtubeaudiocompressor/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Audio Compressor",
    "version": "1.0.2",
    "description": "A simple Youtube extension that compresses video audio sound levels",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch?v=*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scripts\/import-content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "assets\/icons\/16.png",
        "24": "assets\/icons\/24.png",
        "32": "assets\/icons\/32.png",
        "48": "assets\/icons\/48.png",
        "64": "assets\/icons\/64.png",
        "128": "assets\/icons\/128.png",
        "256": "assets\/icons\/256.png",
        "512": "assets\/icons\/512.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "chunks\/*-*.js",
                "scripts\/content-script.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}