Chromium Wheel Smooth Scroller

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

¿Qué es Chromium Wheel Smooth Scroller?

Chromium Wheel Smooth Scroller es una extensión de Chrome desarrollada por kataho, y su función principal es "Make scroll behavior smooth, ease-in-out manner, customizable with dynamically plotted curve. With bouncy edge feature.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Chromium Wheel Smooth Scroller

Descarga archivos de extensión Chromium Wheel Smooth Scroller en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Chromium Wheel Smooth Scroller Chromium Wheel Smooth Scroller
ID khpcanbeojalbkpgpmjpdkjnkfcgfkhb
URL Oficial https://chromewebstore.google.com/detail/chromium-wheel-smooth-scr/khpcanbeojalbkpgpmjpdkjnkfcgfkhb
Descripción Make scroll behavior smooth, ease-in-out manner, customizable with dynamically plotted curve. With bouncy edge feature.
Tamaño del Archivo 31.12 KB
Cantidad de Instalaciones 100,174
Versión Actual 3.0.4
Última Actualización 2023-08-01
Fecha de Publicación 2020-03-02
Calificación 4.44/5 Total de 2296 Calificaciones
Desarrollador kataho
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}