ScrollAnywhere

Drag scrollbar with your middle mouse button anywhere on the page. Supports also "grab and drag" style.

ScrollAnywhereคืออะไร?

ScrollAnywhere เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://fastaddons.com และคุณลักษณะหลักของมันคือ "Drag scrollbar with your middle mouse button anywhere on the page. Supports also "grab and drag" style."

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

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

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

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

                        NOTE: ScrollAnywhere doesn't work on THIS page (all extensions are disabled on "Chrome Web Store" page due to internal security)

Scroll Anywhere enables you to drag scrollbar with your middle / right / left mouse button without touching a scrollbar.
Just hold the middle button and move mouse up-down or left-right.
You can also change the behavior to simple "grab and drag" style.

Warning: very addictive! :)

Features:
- Momentum allows you to throw page to scroll it faster (just like on your phone)
- Middle / Right / Left mouse buttons are supported, see the Options page
- Customize scrollbars - make them thinner, change color or hide
- Auto-disable on specified domains / sub-domains
- Grab and drag scroll like on your phone
- Multiplier to speed-up or slow down
- On key down enable / disable
- Custom scrolling cursor

Video preview (0:12) here:
https://youtu.be/VLv_wAfVO9A

Contribution:
- I'm full-time extension developer and your donations is my only income. There are no ads in my extensions!
- Please support my work by:
    - Buy me a coffee - https://ko-fi.com/fastaddons
    - PayPal donation - https://paypal.me/fastaddons/
    - Patreon - https://www.patreon.com/fastaddons

Thank you! :)
Your donation will help me keep this extension working in future versions of Chrome!

Known issues:
- does not work on https://chrome.google.com/webstore/ (blocked by Chrome)
- does not work on browser specific pages like "chrome://extensions" (blocked by Chrome)
- does not work on other extensions pages like options page of some addon (blocked by Chrome)
- in Linux right click (context menu) cannot be canceled so only middle button is working correctly

Recently added features:
- The list of changes in last versions is available here: https://addons.mozilla.org/addon/scroll_anywhere/versions/                    

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

ชื่อ ScrollAnywhere ScrollAnywhere
ID jehmdpemhgfgjblpkilmeoafmkhbckhi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/scrollanywhere/jehmdpemhgfgjblpkilmeoafmkhbckhi
คำอธิบาย Drag scrollbar with your middle mouse button anywhere on the page. Supports also "grab and drag" style.
ขนาดไฟล์ 409 KB
จำนวนการติดตั้ง 30,000
เวอร์ชันปัจจุบัน 9.1
อัปเดตครั้งล่าสุด 2022-04-25
วันที่เผยแพร่ 2020-06-08
คะแนน 4.68/5 รวมทั้งหมด 111 คะแนน
ผู้พัฒนา https://fastaddons.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://fastaddons.com/#scroll_anywhere
URL หน้าช่วยเหลือ https://github.com/fastaddons/ScrollAnywhere/issues
URL หน้านโยบายความเป็นส่วนตัว https://github.com/fastaddons/privacy_policy
ภาษาที่รองรับ id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "9.1",
    "author": "Juraj M\u00e4siar",
    "default_locale": "en",
    "name": "__MSG_app_name__",
    "description": "__MSG_app_desc__",
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "background": {
        "service_worker": "background.loader.js"
    },
    "action": {
        "default_icon": {
            "128": "128.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "browser-polyfill.min.js",
                "content_script\/chrome_scrollbars.js",
                "content_script\/scroll_anywhere.js"
            ]
        }
    ],
    "permissions": [
        "alarms",
        "storage",
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        ""
    ],
    "optional_permissions": [
        "clipboardRead"
    ]
}