Give me back my scroll wheel
Capture any click event and cancel its propagation if the scroll wheel was used.
什么是Give me back my scroll wheel?
Give me back my scroll wheel是由https://ewoutkleinsmann.com开发的Chrome扩展程序,该扩展的主要功能是“Capture any click event and cancel its propagation if the scroll wheel was used.”。
下载Give me back my scroll wheel扩展crx文件
下载Give me back my scroll wheel扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | |
ID | kfdffnefaojncoocjegphgaphgbkogpi |
官方URL | https://chromewebstore.google.com/detail/give-me-back-my-scroll-wh/kfdffnefaojncoocjegphgaphgbkogpi |
简介 | Capture any click event and cancel its propagation if the scroll wheel was used. |
文件大小 | 32.21 KB |
安装次数 | 21 |
当前版本 | 0.2 |
更新时间 | 2012-08-13 |
上架时间 | 2012-08-13 |
评分 | 5.00/5 共3次评分 |
开发者 | https://ewoutkleinsmann.com |
付费类型 | free |
扩展官网 | http://ewoutkleinsmann.com/give-me-back-my-scroll-wheel/ |
支持的语言 | nl |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Give me back my scroll wheel", "version": "0.2", "description": "Capture any click event and cancel its propagation if the scroll wheel was used.", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "script.js" ] } ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |