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