Youtube Audio Fixer

Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!

O que é Youtube Audio Fixer?

Youtube Audio Fixer é uma extensão do Chrome desenvolvida por purifier.phoenix, e sua principal característica é "Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Youtube Audio Fixer

Baixe arquivos de extensão Youtube Audio Fixer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Youtube Audio Fixer Youtube Audio Fixer
ID kffimnekdgebaakicpmjkpafgkfejdmi
URL Oficial https://chromewebstore.google.com/detail/youtube-audio-fixer/kffimnekdgebaakicpmjkpafgkfejdmi
Descrição Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!
Tamanho do Arquivo 112 KB
Contagem de Instalações 1,170
Versão Atual 1.0
Última Atualização 2019-10-10
Data de Publicação 2019-10-10
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor purifier.phoenix
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
        }
    ]
}