Chrome Wheel
Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.
什么是Chrome Wheel?
Chrome Wheel是由http://samskivert.com开发的Chrome扩展程序,该扩展的主要功能是“Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.”。
下载Chrome Wheel扩展crx文件
下载Chrome Wheel扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Back in the good old days, ctrl-mousewheel or alt-mousewheel scrolled the page in large (full page) increments. That was actually useful. Then someone had the genius idea of making that scale the page up or down. Not so useful in my humble opinion, so this plugin restores the "scroll faster" behavior.
扩展基本信息
名称 | |
ID | ceooplgmfmmjjbmnmhnpnmkikmmcikbn |
官方URL | https://chrome.google.com/webstore/detail/chrome-wheel/ceooplgmfmmjjbmnmhnpnmkikmmcikbn |
简介 | Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior. |
文件大小 | 3.52 KB |
安装次数 | 19 |
当前版本 | 1.0.1 |
更新时间 | 2016-12-02 |
上架时间 | 2016-12-02 |
评分 | 3.00/5 共3次评分 |
开发者 | http://samskivert.com |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chrome Wheel", "version": "1.0.1", "description": "Makes alt\/shift\/ctrl-scrollwheel scroll in large increments instead of default behavior.", "permissions": [ "tabs" ], "content_scripts": [ { "js": [ "chromewheel.js" ], "run_at": "document_start", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "all_frames": true } ] } |