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
官方網址 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"
            ]
        }
    ]
}