// ==UserScript== // @name Refresh page every 15 minutes // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.mousehuntgame.com/ // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(function(){ location.reload(); }, 900*1000); })();