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 هو إضافة Chrome تم تطويرها بواسطة purifier.phoenix، والميزة الرئيسية لها هي "Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Youtube Audio Fixer

قم بتنزيل ملفات الامتداد Youtube Audio Fixer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
        }
    ]
}