NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Auto refresh page every 1 minute // @namespace Auto-refresh // @description Automatically refresh current page every 1 minute // @author Raj Puram // @version 0.1 // @collaborator raj.puram09 // @license APL-1.0 // @grant GM.setClipboard // @grant GM_addStyle // @grant GM_setClipboard // ==/UserScript== function changePage() { window.location.reload(); } var numberOfMSToWait = 60000; //setTimeout(changePage(), numberOfMSToWait); setTimeout(function () { location.reload(); }, numberOfMSToWait);