Youtube Audio Compressor
A simple Youtube extension that compresses video audio sound levels
Was ist Youtube Audio Compressor?
Youtube Audio Compressor ist eine Chrome-Erweiterung, die von https://dancodes.online entwickelt wurde, und ihr Hauptmerkmal ist "A simple Youtube extension that compresses video audio sound levels".
Erweiterungsscreenshots
Youtube Audio Compressor-Erweiterungs-CRX-Datei herunterladen
Laden Sie Youtube Audio Compressor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Youtube Audio Compressor |
ID | henggpklijhpgacenhcmoffgnhbblgag |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-audio-compressor/henggpklijhpgacenhcmoffgnhbblgag |
Beschreibung | A simple Youtube extension that compresses video audio sound levels |
Dateigröße | 28.2 KB |
Installationsanzahl | 3,450 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2023-04-12 |
Veröffentlichungsdatum | 2022-10-05 |
Bewertung | 4.22/5 Insgesamt 36 Bewertungen |
Entwickler | https://dancodes.online |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/dan-online/youtubeaudiocompressor |
Hilfeseite URL | https://github.com/dan-online/youtubeaudiocompressor/issues |
Unterstützte Sprachen | 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\/*" ] } ] } |