Disable AutoScroll

Disables middle-click autoscrolling (often confused with 'smooth scrolling')

Disable AutoScrollคืออะไร?

Disable AutoScroll เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Slackwise และคุณลักษณะหลักของมันคือ "Disables middle-click autoscrolling (often confused with 'smooth scrolling')"

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

screenshot

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

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

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

                        All this extension does is disable the middle-click "AutoScroll" feature so you don't accidentally activate it when trying to middle-click a link with your scroll-wheel to open a link in a new tab.

The screenshot is of the ENTIRE source-code, and it's all on GitHub as well.                    

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

ชื่อ Disable AutoScroll Disable AutoScroll
ID ggakmjgkpoeoiicikoohgojkoehmnhdc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/disable-autoscroll/ggakmjgkpoeoiicikoohgojkoehmnhdc
คำอธิบาย Disables middle-click autoscrolling (often confused with 'smooth scrolling')
ขนาดไฟล์ 13.33 KB
จำนวนการติดตั้ง 1,455
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2024-01-01
วันที่เผยแพร่ 2022-07-14
คะแนน 4.58/5 รวมทั้งหมด 24 คะแนน
ผู้พัฒนา Slackwise
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Slackwise/disable-autoscroll-webextension
URL หน้าช่วยเหลือ https://github.com/Slackwise/disable-autoscroll-webextension/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Disable AutoScroll",
    "short_name": "Disable AutoScroll",
    "description": "Disables middle-click autoscrolling (often confused with 'smooth scrolling')",
    "version": "1.2",
    "author": "Slackwise",
    "icons": {
        "48": "disable-autoscroll-48.png",
        "125": "disable-autoscroll-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "disable-autoscroll.js"
            ]
        }
    ]
}