diff --git a/gsv-reload.user.js b/gsv-reload.user.js new file mode 100644 index 0000000..0a329de --- /dev/null +++ b/gsv-reload.user.js @@ -0,0 +1,13 @@ +// ==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); +