Remove Unused Buttons in HIT Forker

Removes vB, SLK, and IRC buttons from HIT Forker.

目前為 2020-02-19 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Remove Unused Buttons in HIT Forker
// @namespace    https://greasyfork.org/en/users/434272-realalexz
// @version      0.3
// @description  Removes vB, SLK, and IRC buttons from HIT Forker.
// @author       RealAlexZ
// @include      https://worker.mturk.com/?hit_forker
// @grant        none
// @require      https://code.jquery.com/jquery-3.1.0.min.js
// ==/UserScript==

var css =
        '.vb, .irc { width: 11px !important; visibility: hidden !important; }' +
        '.slk { width: 2px !important; visibility: hidden !important; }';

$('#css').append(css);