Chrome Wheel
Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.
What is Chrome Wheel?
Chrome Wheel is a Chrome extension developed by http://samskivert.com, and its main feature is "Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.".
Download Chrome Wheel Extension CRX File
Download Chrome 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
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. Extension Basic Information
| Name | |
| ID | ceooplgmfmmjjbmnmhnpnmkikmmcikbn |
| Official URL | https://chrome.google.com/webstore/detail/chrome-wheel/ceooplgmfmmjjbmnmhnpnmkikmmcikbn |
| Description | Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior. |
| File Size | 3.52 KB |
| Installation Count | 19 |
| Current Version | 1.0.1 |
| Last Updated | 2016-12-02 |
| Publish Date | 2016-12-02 |
| Rating | 3.00/5 Total 3 Ratings |
| Developer | http://samskivert.com |
| Payment Type | free |
| Supported Languages | 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
}
]
} | |