Audio Compressor
Compress audio to make sound volumes more even
Audio Compressorคืออะไร?
Audio Compressor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vatara420 และคุณลักษณะหลักของมันคือ "Compress audio to make sound volumes more even"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Audio Compressor
ดาวน์โหลดไฟล์ส่วนขยาย Audio Compressor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 } ] } } |