Chromium Wheel Smooth Scroller

Make scroll behavior smooth, ease-in-out manner, customizable with dynamically plotted curve. With bouncy edge feature.

Τι είναι το Chromium Wheel Smooth Scroller;

Το Chromium Wheel Smooth Scroller είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kataho, και η κύρια λειτουργία του είναι "Make scroll behavior smooth, ease-in-out manner, customizable with dynamically plotted curve. With bouncy edge feature.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Chromium Wheel Smooth Scroller

Λήψη αρχείων επέκτασης Chromium Wheel Smooth Scroller σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        This extension changes scrolling on pages loaded by http and ftp very comfortable smooth one. You can design animation curve of scroll as you prefer by previewing plotted curve in the options page. It has bouncy edge feature also.

This is a port of a Firefox add-on that has same features: Yet Another Smooth Scrolling. If you like this extension, you should use YASS when you are on Firefox.                    

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

Όνομα Chromium Wheel Smooth Scroller Chromium Wheel Smooth Scroller
ID khpcanbeojalbkpgpmjpdkjnkfcgfkhb
Επίσημο URL https://chromewebstore.google.com/detail/chromium-wheel-smooth-scr/khpcanbeojalbkpgpmjpdkjnkfcgfkhb
Περιγραφή Make scroll behavior smooth, ease-in-out manner, customizable with dynamically plotted curve. With bouncy edge feature.
Μέγεθος Αρχείου 31.12 KB
Αριθμός Εγκαταστάσεων 100,174
Τρέχουσα Έκδοση 3.0.4
Τελευταία Ενημέρωση 2023-08-01
Ημερομηνία Δημοσίευσης 2020-03-02
Αξιολόγηση 4.44/5 Συνολικά 2296 Αξιολογήσεις
Προγραμματιστής kataho
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chromium Wheel Smooth Scroller",
    "version": "3.0.4",
    "description": "Make scroll behavior smooth, ease-in-out manner, customizable with dynamically plotted curve. With bouncy edge feature.",
    "icons": {
        "48": "wheel.png",
        "128": "wheel.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "util.js",
                "MatchingPatterns.js",
                "Quirks.js",
                "Scroller.js",
                "ScrollerClasses.js",
                "Smoother.js",
                "NodeFinder.js",
                "EventConverter.js",
                "EventHandler.js",
                "main.js"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "match_about_blank": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "bg.js"
    },
    "options_page": "options.html",
    "action": {
        "default_icon": "wheel.png"
    }
}