Greasy Fork is available in English.
reloads net.statev.de every minute!
// ==UserScript==
// @name StateV Net Updater
// @namespace http://tampermonkey.net/
// @version 0.1
// @description reloads net.statev.de every minute!
// @author Socius
// @match https://net.statev.de/
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(function(){
location.reload();
}, 60000);
})();