NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Reloader
// @namespace http://tampermonkey.net/
// @version 2026-05-27
// @description Just reload it!
// @author anonym
// @match https://*.*/
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(() => {
location.reload();
}, 1000000); // 1,000,000 milliseconds = ~16 minutes and 40 seconds
})();