Greasy Fork

Hide Chat Button

Hides the chat button.

目前为 2016-07-06 提交的版本。查看 最新版本

// ==UserScript==
// @name         Hide Chat Button
// @namespace    PXgamer
// @version      0.1
// @description  Hides the chat button.
// @author       PXgamer
// @include      *kat.cr/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $('.chatButton').hide();
})();