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
Eメール [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"
            ]
        }
    ]
}