// ==UserScript== // @name [GSV] Reload every 15 minutes // @namespace https://www.schtobia.de/ // @include https://www.grillsportverein.de/forum/find-new/*/posts // @version 1.0 // @grant none // @runt-at document-end // @downloadURL https://github.com/schtobia/greasemonkey/raw/master/gsv-reload.user.js // @updateURL https://github.com/schtobia/greasemonkey/raw/master/gsv-reload.user.js // ==/UserScript== setTimeout(function(){ location.reload(); var now = new Date(); console.info("Reload on " + now.toISOString()); }, 15 * 60 * 1000);