No-Alt-Mouse-Wheel

Prevent mouse wheel scrolling if alt is pressed

What is No-Alt-Mouse-Wheel?

No-Alt-Mouse-Wheel is a Chrome extension developed by Lars Kiesow, and its main feature is "Prevent mouse wheel scrolling if alt is pressed".

Extension Screenshots

Download No-Alt-Mouse-Wheel Extension CRX File

Download No-Alt-Mouse-Wheel extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This comes in handy if system events are already bound to scrolling with modifier keys like for example the window managers desktop zoom accessibility feature which would otherwise cause page-scrolling in Chrome every time it is being used.                    

Extension Basic Information

Name No-Alt-Mouse-Wheel No-Alt-Mouse-Wheel
ID hhkhclphjffknpneoimgmpegghdfgmjb
Official URL https://chromewebstore.google.com/detail/no-alt-mouse-wheel/hhkhclphjffknpneoimgmpegghdfgmjb
Description Prevent mouse wheel scrolling if alt is pressed
File Size 16.6 KB
Installation Count 31
Current Version 0.2
Last Updated 2019-03-20
Publish Date 2019-03-14
Rating 4.50/5 Total 2 Ratings
Developer Lars Kiesow
Payment Type free
Extension Website https://github.com/lkiesow/chromw-no-alt-mouse-wheel
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "No-Alt-Mouse-Wheel",
    "description": "Prevent mouse wheel scrolling if alt is pressed",
    "version": "0.2",
    "author": "Lars Kiesow",
    "homepage_url": "https:\/\/github.com\/lkiesow\/chromw-no-alt-mouse-wheel",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "no-alt-wheel.js"
            ]
        }
    ]
}