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!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Audio Fixer
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Audio Fixer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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 } ] } |