Refresh page every 15 minutes

try to take over the world!

// ==UserScript==
// @name         Refresh page every 15 minutes
// @namespace    http://tampermonkey.net/
// @version      0.2
// @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
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(function(){ location.reload(); }, 900*1000);
})();