// ==UserScript== // @name Hide Chat Button // @namespace PXgamer // @version 0.1 // @description Hides the chat button. // @author PXgamer // @include *kat.cr/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; $('.chatButton').hide(); })();