RCOI autoupdate

Update at random time

As of 2021-06-18. See the latest version.

// ==UserScript==
// @name         RCOI autoupdate
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Update at random time
// @author       NickKolok
// @match        http://res11.rcoi.net/*
// @icon         https://www.google.com/s2/favicons?domain=rcoi.net
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setTimeout('document.location.reload();',20*1000*(1+Math.random()));

})();