No-Alt-Mouse-Wheel
Prevent mouse wheel scrolling if alt is pressed
什么是No-Alt-Mouse-Wheel?
No-Alt-Mouse-Wheel是由Lars Kiesow开发的Chrome扩展程序,该扩展的主要功能是“Prevent mouse wheel scrolling if alt is pressed”。
扩展截图
下载No-Alt-Mouse-Wheel扩展crx文件
下载No-Alt-Mouse-Wheel扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | hhkhclphjffknpneoimgmpegghdfgmjb |
官方URL | https://chromewebstore.google.com/detail/no-alt-mouse-wheel/hhkhclphjffknpneoimgmpegghdfgmjb |
简介 | Prevent mouse wheel scrolling if alt is pressed |
文件大小 | 16.6 KB |
安装次数 | 31 |
当前版本 | 0.2 |
更新时间 | 2019-03-20 |
上架时间 | 2019-03-14 |
评分 | 4.50/5 共2次评分 |
开发者 | Lars Kiesow |
付费类型 | free |
扩展官网 | https://github.com/lkiesow/chromw-no-alt-mouse-wheel |
支持的语言 | 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" ] } ] } |