Fast Scroll

Fast Scroll is a tiny but very handy extension that allows you to scroll through web pages way faster.

Fast Scrollคืออะไร?

Fast Scroll เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mickaël Allonneau และคุณลักษณะหลักของมันคือ "Fast Scroll is a tiny but very handy extension that allows you to scroll through web pages way faster."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fast Scroll

ดาวน์โหลดไฟล์ส่วนขยาย Fast Scroll ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        NOTE: PLEASE REFRESH YOUR OPEN TABS AFTER THE INSTALLATION FOR THE EXTENSION TO WORK.

This small extension allows you to increase scroll speed on web pages either :
- by pressing a key of your choice between Left Alt (the default), Right Alt, Left Ctrl and Left Shift
- or without doing anything : scroll speed will always be increased, and you'll have the ability to decrease it temporarily by pressing one of the keys mentioned above

You'll also be able to configure the new scroll speed through the extension's Settings page.

Quite handy to scroll through long web pages or big documents quickly !

If you have any feedback, feel free to ping me @flawyte on Twitter, send me an email or open an issue on the GitHub repo if you're a developer!

## Release history
# v4.1 (2022-11-14)

- You can now use the Alt Right key as trigger key

# v4 (2020-11-04)

- The Settings page was removed and you can now change the extension's settings without leaving your current webpage by clicking the extension's icon in the top-right. Don't forget to refresh open tabs after you've saved your new settings for the changes to be taken into account!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Fast Scroll Fast Scroll
ID ecnjcglleblahonnenpaiofkabfakgdi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fast-scroll/ecnjcglleblahonnenpaiofkabfakgdi
คำอธิบาย Fast Scroll is a tiny but very handy extension that allows you to scroll through web pages way faster.
ขนาดไฟล์ 72.98 KB
จำนวนการติดตั้ง 3,337
เวอร์ชันปัจจุบัน 4.1
อัปเดตครั้งล่าสุด 2023-09-04
วันที่เผยแพร่ 2020-06-03
คะแนน 3.72/5 รวมทั้งหมด 25 คะแนน
ผู้พัฒนา Mickaël Allonneau
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/flawyte/fast-scroll
ภาษาที่รองรับ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fast Scroll",
    "version": "4.1",
    "default_locale": "en",
    "description": "__MSG_meta_description__",
    "author": "Micka\u00ebl Allonneau",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "index.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "settings\/index.html"
    },
    "homepage_url": "https:\/\/github.com\/flawyte\/fast-scroll",
    "icons": {
        "16": "res\/icon16.png",
        "48": "res\/icon48.png",
        "128": "res\/icon128.png"
    },
    "permissions": [
        "storage"
    ]
}