Chromium Wheel Smooth Scroller

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

Vad är Chromium Wheel Smooth Scroller?

Chromium Wheel Smooth Scroller är en Chrome-tillägg utvecklad av kataho, och dess huvudfunktion är "Make scroll behavior smooth, ease-in-out manner, customizable with dynamically plotted curve. With bouncy edge feature.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Chromium Wheel Smooth Scroller-förlängningens CRX-fil

Ladda ner Chromium Wheel Smooth Scroller-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Chromium Wheel Smooth Scroller Chromium Wheel Smooth Scroller
ID khpcanbeojalbkpgpmjpdkjnkfcgfkhb
Officiell webbadress https://chromewebstore.google.com/detail/chromium-wheel-smooth-scr/khpcanbeojalbkpgpmjpdkjnkfcgfkhb
Beskrivning Make scroll behavior smooth, ease-in-out manner, customizable with dynamically plotted curve. With bouncy edge feature.
Filstorlek 31.12 KB
Antal Installationer 100,174
Aktuell Version 3.0.4
Senast Uppdaterad 2023-08-01
Publiceringsdatum 2020-03-02
Betyg 4.44/5 Totalt 2296 Betyg
Utvecklare kataho
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}