Youtube Audio Fixer
Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!
Was ist Youtube Audio Fixer?
Youtube Audio Fixer ist eine Chrome-Erweiterung, die von purifier.phoenix entwickelt wurde, und ihr Hauptmerkmal ist "Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!".
Erweiterungsscreenshots
Youtube Audio Fixer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Youtube Audio Fixer-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
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
Grundlegende Informationen zur Erweiterung
Name | Youtube Audio Fixer |
ID | kffimnekdgebaakicpmjkpafgkfejdmi |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-audio-fixer/kffimnekdgebaakicpmjkpafgkfejdmi |
Beschreibung | Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder! |
Dateigröße | 112 KB |
Installationsanzahl | 1,170 |
Aktuelle Version | 1.0 |
Letztes Update | 2019-10-10 |
Veröffentlichungsdatum | 2019-10-10 |
Bewertung | 5.00/5 Insgesamt 5 Bewertungen |
Entwickler | purifier.phoenix |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } ] } |