// ==UserScript== // @name Browser Auto Refresh // @version 0.1 // @description lol // @author Anonymous // @match https://site.com/* // @match http://site.com/* // @grant GM_setValue // @grant GM_getValue // @grant GM_addStyle // ==/UserScript== setInterval(function() { window.location.reload(); }, 300);