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"
    }
}