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はkatahoによって開発されたChromeの拡張機能で、その主な機能は「Make scroll behavior smooth, ease-in-out manner, customizable with dynamically plotted curve. With bouncy edge feature.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Chromium Wheel Smooth Scroller拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}