greasemonkey/gsv-reload.user.js
2017-11-21 09:49:05 +01:00

14 lines
610 B
JavaScript

// ==UserScript==
// @name [GSV] Reload every 15 minutes
// @namespace https://www.schtobia.de/
// @include https://www.grillsportverein.de/forum/find-new/*/posts
// @author Tobias Schmidl
// @version 1.0.1
// @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);