NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Wrong RFC Reload // @namespace http://www.torn.com/ // @version 1.0 // @description Reloads page on wrong RFC // @author Merlin Reichwald // @copyright 2018, Merlin-R (https://openuserjs.org/users/Merlin-R) // @license MIT // @match https://www.torn.com/* // @grant none // ==/UserScript== setInterval(()=>{if ( $('.content-wrapper').text().indexOf('Wrong RFC') !== -1 ) location.reload( true );},1000);