Disable AutoScroll

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

Disable AutoScroll là gì?

Disable AutoScroll là một tiện ích mở rộng Chrome được phát triển bởi Slackwise, và tính năng chính của nó là "Disables middle-click autoscrolling (often confused with 'smooth scrolling')".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Disable AutoScroll

Tải xuống các tệp mở rộng Disable AutoScroll dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Disable AutoScroll Disable AutoScroll
ID ggakmjgkpoeoiicikoohgojkoehmnhdc
URL Chính Thức https://chromewebstore.google.com/detail/disable-autoscroll/ggakmjgkpoeoiicikoohgojkoehmnhdc
Mô tả Disables middle-click autoscrolling (often confused with 'smooth scrolling')
Kích Thước Tệp 13.33 KB
Số Lần Cài Đặt 1,455
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2024-01-01
Ngày Phát Hành 2022-07-14
Đánh Giá 4.58/5 Tổng số 24 Đánh Giá
Nhà Phát Triển Slackwise
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Slackwise/disable-autoscroll-webextension
URL Trang Trợ Giúp https://github.com/Slackwise/disable-autoscroll-webextension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}