Added new script for grillsportverein.de

This commit is contained in:
Tobias Schmidl 2017-02-25 11:06:59 +01:00
parent 5b0e10cb3b
commit 1c4186263b

13
gsv-reload.user.js Normal file
View file

@ -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);