NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name RT - Bye, bye, actions!
// @namespace https://rtpowered.com/
// @description Убирает нахуй кнопку Actions
// @author KKK
// @match https://rtpowered.com/Ticket/Display.html*
// @require http://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.3/jquery.min.js
// @version 1.5
// @grant none
// @license MIT
// ==/UserScript==
//Ниже идёт непосредственно код скрипта
var element = $('#li-page-actions li').detach();
$(element).removeAttr("style");
$('#page-menu').prepend(element);
$('#page-actions').remove();
$('#page-actions-stall').remove();
$('#page-actions-reject').remove();
$('#page-actions-extract-article').remove();
$('#li-page-actions-open-it').remove();
$('#page-history').remove();
$('#page-jumbo').remove();
// $('#page-dates').remove();
$('#page-menu #page-actions-resolve').css("background-color", "#c0ffdb");
$('#page-menu #page-actions-comment').css("background-color", "#c0d3ff");
$('#page-menu #page-actions-reply').css("background-color", "#ffc3c0");