Warning: fopen(/www/sites/greasyfork.icu/index/store/temp/ceedba26a4d2f84cd35f0843defa0400.html): failed to open stream: No space left on device in /www/sites/greasyfork.icu/index/scriptsControl.php on line 132
Hide Chat Button - 源代码

Greasy Fork

Greasy Fork is available in English.

Hide Chat Button

Hides the chat button.

// ==UserScript==
// @name         Hide Chat Button
// @namespace    pxgamer
// @version      0.1
// @description  Hides the chat button.
// @author       pxgamer
// @include      *kat.cr/*
// @grant        none
// @require.     https://code.jquery.com/jquery-1.12.3.min.js
// ==/UserScript==

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