Disable AutoScroll

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

什么是Disable AutoScroll?

Disable AutoScroll是由Slackwise开发的Chrome扩展程序,该扩展的主要功能是“Disables middle-click autoscrolling (often confused with 'smooth scrolling')”。

扩展截图

screenshot

下载Disable AutoScroll扩展crx文件

下载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"
            ]
        }
    ]
}