EbM 2

Force a full, uncached reload of the page every 60 secondS

// ==UserScript==
// @name         EbM 2
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Force a full, uncached reload of the page every 60 secondS
// @author       👽
// @match        https://earnbitmoon.club/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
    'use strict';

    // Force full refresh by reassigning window.location
    setTimeout(() => {
        window.location.href = window.location.href.split('#')[0];
    }, 60000);
})();