Greasy Fork

Refresh page every 15 minutes

try to take over the world!

目前为 2020-03-05 提交的版本。查看 最新版本

// ==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
// ==/UserScript==

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