// ==UserScript== // @name FO Error Reloader // @namespace http://meat.net/ // @description Reload an FO page // @include http://www.footballoutsiders.com/* // ==/UserScript== if (document.title.replace(/[^A-Za-z]/g,'') == 'WordPressError' || document.body.firstChild.nextSibling == null) { h1 = document.createElement("h1"); h1.textContent = "Reloading..."; document.body.insertBefore(h1, document.body.firstChild); window.setTimeout(function() { window.location.reload(); }, 10000); }