Highlight and drag the code below to your bookmarks bar (or create a new bookmark and set the code below as the address, but be sure to include the 'javascript:' part).
javascript:var isScrolling; var scrolldelay; function pageScroll() { window.scrollBy(0,1); scrolldelay = setTimeout('pageScroll()',25); isScrolling = true; } if(!isScrolling) { pageScroll(); } else { isScrolling = false; clearTimeout(scrolldelay); }
To increase or decrease the speed, you can change the 25 in setTimeout(‘pageScroll()’,25) to however many milliseconds you want to pass before updating the page. The higher the number, the slower it will scroll.
Click on the bookmarklet to start and stop scrolling.
Enjoy :)