Youtube Audio Fixer

Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!

Youtube Audio Fixer란 무엇입니까?

Youtube Audio Fixer은(는) purifier.phoenix에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This was created with the sole intention of fixing audio being one-sided or unbalanced, which if wearing headphones creates an annoyance, which this simple extension should remedy.

For Testing See
https://www.youtube.com/watch?v=6TWJaFD6R2s                    

확장 프로그램 기본 정보

이름 Youtube Audio Fixer Youtube Audio Fixer
ID kffimnekdgebaakicpmjkpafgkfejdmi
공식 URL https://chromewebstore.google.com/detail/youtube-audio-fixer/kffimnekdgebaakicpmjkpafgkfejdmi
설명 Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!
파일 크기 112 KB
설치 횟수 1,170
현재 버전 1.0
최근 업데이트 2019-10-10
출시 날짜 2019-10-10
평점 5.00/5 총 5 개의 평점
개발자 purifier.phoenix
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Audio Fixer",
    "description": "Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "16": "yt16x16.png",
        "32": "yt32x32.png",
        "64": "yt64x64.png",
        "128": "yt128x128.png",
        "256": "yt256x256.png",
        "512": "yt512x512.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "StereoFixer.js"
            ],
            "css": [
                "StereoFixer.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}