Reviews for BMW - Broken Mouse Wheel
BMW - Broken Mouse Wheel by Firefox user 13282525
Review by difabor
Rated 4 out of 5
by difabor, 7 years agoSomething, like this:
var height = document.documentElement.scrollHeight;
var width = document.documentElement.scrollWidth;
function scroll(event){
var y = event.clientY;
var yPercentage = y/screen.height;
var x = event.clientX;
var xPercentage = x/screen.width;
//ctrlKey is subject to change as more features will be added
if (event.ctrlKey)
window.scrollTo(xPercentage*width,yPercentage*height);
}
window.onmousemove = scroll;
---------------------------------------------------------------------------
In addition I found, that this addon does not work on addons.mozilla.org (on mozilla.org it works)
var height = document.documentElement.scrollHeight;
var width = document.documentElement.scrollWidth;
function scroll(event){
var y = event.clientY;
var yPercentage = y/screen.height;
var x = event.clientX;
var xPercentage = x/screen.width;
//ctrlKey is subject to change as more features will be added
if (event.ctrlKey)
window.scrollTo(xPercentage*width,yPercentage*height);
}
window.onmousemove = scroll;
---------------------------------------------------------------------------
In addition I found, that this addon does not work on addons.mozilla.org (on mozilla.org it works)
3 reviews
- Rated 5 out of 5by YL, 6 years ago
- Rated 5 out of 5by Firefox user 11858178, 7 years agoVery cool thing, I'm working mainly with Touchpads or Trackballs, I didn't know what I was missing all the years. Thanks a bunch :)
Developer response
posted 7 years agoHello Herb, we just uploaded an advanced version of this extension. You can download it at: https://addons.mozilla.org/en-US/firefox/addon/broken-mouse-wheel/