NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @namespace https://openuserjs.org/users/ProximoCentauri // @name Scrolleame la vuelta // @version 0.1.1 // @author Proximo Centaurii // @description Scroll down and reload! // @copyright 2017, ProximoCentaurii (https://openuserjs.org/users/ProximoCentauri) // @license MIT // @grant none // ==/UserScript== (function(){ pageScroll(); setTimeout(function(){document.location.reload()}, 10000); function pageScroll() { window.scrollBy(0,1); scrolldelay = setTimeout(pageScroll,10); } })();