Scrollbar Anywhere

Click and drag anywhere to scroll the page.

Scrollbar Anywhereคืออะไร?

Scrollbar Anywhere เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Pärsson และคุณลักษณะหลักของมันคือ "Click and drag anywhere to scroll the page."

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

screenshot
screenshot

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

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

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

                        This extension makes it possible to to scroll pages as if the scrollbar was right under your pointer. Just press the right mouse button (or any other of your choice) and move the mouse.

If you want grab-and-drag style scrolling, just set it up in the options.

The extension is based on the Wet Banana extension and inspired by Scrollbar Anywhere for Firefox.

Changes in 2.16:
- Stop gliding when a key is pressed or the mouse wheel is scrolled.
- Fix a bug where the default mouse click actions were incorrectly prevented.

Changes in 2.15:
- Blacklist bug fix for file URLs.

Changes in 2.14, 2.13 and 2.12:
- Support for Chrome v60+.

Changes in 2.11:
- Add a blacklist, allowing users to disable scrolling on certain domains.

Changes in 2.10:
- Fixed a bug where settings in open tabs were not updated.                    

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

ชื่อ Scrollbar Anywhere Scrollbar Anywhere
ID namcaplenodjnggbfkbopdbfngponici
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/scrollbar-anywhere/namcaplenodjnggbfkbopdbfngponici
คำอธิบาย Click and drag anywhere to scroll the page.
ขนาดไฟล์ 19.87 KB
จำนวนการติดตั้ง 15,351
เวอร์ชันปัจจุบัน 2.17
อัปเดตครั้งล่าสุด 2019-08-03
วันที่เผยแพร่ 2019-08-03
คะแนน 4.30/5 รวมทั้งหมด 291 คะแนน
ผู้พัฒนา David Pärsson
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://github.com/davidparsson/scrollbar-anywhere
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scrollbar Anywhere",
    "version": "2.17",
    "description": "Click and drag anywhere to scroll the page.",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "32": "icon32.png",
        "16": "icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Click to toggle Scrollbar Anywhere"
    },
    "options_page": "options.html",
    "manifest_version": 2,
    "minimum_chrome_version": "49"
}