YouTube Volume Scroll Master

Makes the YouTube Volume go woosh when scrolling over the video!

O que é YouTube Volume Scroll Master?

YouTube Volume Scroll Master é uma extensão do Chrome desenvolvida por Lukas Oberholzer, e sua principal característica é "Makes the YouTube Volume go woosh when scrolling over the video!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube Volume Scroll Master

Baixe arquivos de extensão YouTube Volume Scroll Master 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

                        YouTube Volume Scroll Master is a small extension designed to simplify changing the volume in YouTube videos.

Scroll over the YouTube video player to increase or decrease its volume by two levels. That's it. That's all this extension can do.

If the extension doesn't work, reload the website. This may be because the website (the video player, to be exact) is taking too long to load and the events are not subscribing to the video player correctly.                    

Informações Básicas da Extensão

Nome YouTube Volume Scroll Master YouTube Volume Scroll Master
ID pkmkphhocffbdebfbkohpnnaohidfama
URL Oficial https://chromewebstore.google.com/detail/youtube-volume-scroll-mas/pkmkphhocffbdebfbkohpnnaohidfama
Descrição Makes the YouTube Volume go woosh when scrolling over the video!
Tamanho do Arquivo 17.63 KB
Contagem de Instalações 100
Versão Atual 0.5.0.0
Última Atualização 2022-04-22
Data de Publicação 2022-04-21
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Lukas Oberholzer
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/LuckLATL/yt-volume-scroll-master
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Volume Scroll Master",
    "version": "0.5.0.0",
    "description": "Makes the YouTube Volume go woosh when scrolling over the video!",
    "short_name": "YtScrollMaster",
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "volumeScroller.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}