RyuFive / Chat Only

// ==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
}