NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @namespace https://openuserjs.org/users/RyuFive // @name Chat Only // @version 1.0 // @description Hide on all pages except Craps Page // @include https://www.torn.com/* // @license MIT // @grant none // ==/UserScript== // ==OpenUserJS== // @author RyuFive // ==/OpenUserJS== if (window.location.href.indexOf("craps") <= -1) { document.getElementById("chatRoot").hidden = true }