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”。
扩展截图
下载Youtube Audio Compressor扩展crx文件
下载Youtube Audio Compressor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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\/*" ] } ] } |