YouTube Volume Scroll Master

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

What is YouTube Volume Scroll Master?

YouTube Volume Scroll Master is a Chrome extension developed by Lukas Oberholzer, and its main feature is "Makes the YouTube Volume go woosh when scrolling over the video!".

Extension Screenshots

screenshot

Download YouTube Volume Scroll Master Extension CRX File

Download YouTube Volume Scroll Master extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name YouTube Volume Scroll Master YouTube Volume Scroll Master
ID pkmkphhocffbdebfbkohpnnaohidfama
Official URL https://chromewebstore.google.com/detail/youtube-volume-scroll-mas/pkmkphhocffbdebfbkohpnnaohidfama
Description Makes the YouTube Volume go woosh when scrolling over the video!
File Size 17.63 KB
Installation Count 100
Current Version 0.5.0.0
Last Updated 2022-04-22
Publish Date 2022-04-21
Rating 5.00/5 Total 3 Ratings
Developer Lukas Oberholzer
Email [email protected]
Payment Type free
Extension Website https://github.com/LuckLATL/yt-volume-scroll-master
Supported Languages 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"
    }
}