YouTube Volume Fix

This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…

O que é YouTube Volume Fix?

YouTube Volume Fix é uma extensão do Chrome desenvolvida por Connor Linfoot, e sua principal característica é "This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…".

Baixar o arquivo CRX da Extensão YouTube Volume Fix

Baixe arquivos de extensão YouTube Volume Fix 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 Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a more accurate volume output.                    

Informações Básicas da Extensão

Nome YouTube Volume Fix YouTube Volume Fix
ID okocpealpliblhljcgldklklkifaoioa
URL Oficial https://chrome.google.com/webstore/detail/youtube-volume-fix/okocpealpliblhljcgldklklkifaoioa
Descrição This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…
Tamanho do Arquivo 14.8 KB
Contagem de Instalações 39
Versão Atual 1.0.2
Última Atualização 2017-06-20
Data de Publicação 2017-06-20
Classificação 2.00/5 Total de 4 Avaliações
Desenvolvedor Connor Linfoot
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Volume Fix",
    "version": "1.0.2",
    "minimum_chrome_version": "18",
    "manifest_version": 2,
    "description": "",
    "icons": {
        "16": "\/images\/icon16.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest"
    ],
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "youtube-volume-fix.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}