Youtube Audio Fixer
Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!
¿Qué es Youtube Audio Fixer?
Youtube Audio Fixer es una extensión de Chrome desarrollada por purifier.phoenix, y su función principal es "Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Youtube Audio Fixer
Descarga archivos de extensión Youtube Audio Fixer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Youtube Audio Fixer |
ID | kffimnekdgebaakicpmjkpafgkfejdmi |
URL Oficial | https://chromewebstore.google.com/detail/youtube-audio-fixer/kffimnekdgebaakicpmjkpafgkfejdmi |
Descripción | Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder! |
Tamaño del Archivo | 112 KB |
Cantidad de Instalaciones | 1,170 |
Versión Actual | 1.0 |
Última Actualización | 2019-10-10 |
Fecha de Publicación | 2019-10-10 |
Calificación | 5.00/5 Total de 5 Calificaciones |
Desarrollador | purifier.phoenix |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } ] } |