YouTube Volume Scroll Master

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

Τι είναι το YouTube Volume Scroll Master;

Το YouTube Volume Scroll Master είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Lukas Oberholzer, και η κύρια λειτουργία του είναι "Makes the YouTube Volume go woosh when scrolling over the video!".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Volume Scroll Master

Λήψη αρχείων επέκτασης YouTube Volume Scroll Master σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα YouTube Volume Scroll Master YouTube Volume Scroll Master
ID pkmkphhocffbdebfbkohpnnaohidfama
Επίσημο URL https://chromewebstore.google.com/detail/youtube-volume-scroll-mas/pkmkphhocffbdebfbkohpnnaohidfama
Περιγραφή Makes the YouTube Volume go woosh when scrolling over the video!
Μέγεθος Αρχείου 17.63 KB
Αριθμός Εγκαταστάσεων 100
Τρέχουσα Έκδοση 0.5.0.0
Τελευταία Ενημέρωση 2022-04-22
Ημερομηνία Δημοσίευσης 2022-04-21
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Lukas Oberholzer
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/LuckLATL/yt-volume-scroll-master
Υποστηριζόμενες Γλώσσες 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"
    }
}