NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Refresh // @namespace http://tampermonkey.net/ // @version 2 // @description Prevents logging out // @author Dopamine // @match www.blankmediagames.com/Trial/* // @include http://blankmediagames.com/Trial/* // @include https://blankmediagames.com/Trial/* // @exclude http://www.blankmediagames.com/Trial/viewReport.php?id=* // @grant none // @license MIT // ==/UserScript== var myElement = document.getElementById('guilty'); if ($('p').text() == "The service is temporarily unavailable. Please try again later.") { setTimeout(function() { location.reload(true); }, 5000) } if (myElement !== null) { setTimeout(function() { location.reload(true); }, 60000) }