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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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\/*"
]
}
]
} | |