Skip to content

Instantly share code, notes, and snippets.

@awef
Created June 12, 2010 23:07
Show Gist options
  • Save awef/436166 to your computer and use it in GitHub Desktop.
Save awef/436166 to your computer and use it in GitHub Desktop.
scrollmore.user.js
// ==UserScript==
// @name Scroll More
// @description マウスホイールのスクロール量を増やす
// @match http://*/*
// @match https://*/*
// ==/UserScript==
document.body.addEventListener("mousewheel", function(e){
document.body.scrollTop -= e.wheelDeltaY * 2;
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment