Greasy Fork is available in English.
Fully mushable sidebar
当前为
// ==UserScript==
// @name Draggable Sidebar Elements
// @namespace PXgamer
// @include *localhost:999/kat/*
// @include *kickass.to/*
// @include *kat.cr/*
// @description Fully mushable sidebar
// @version 1.5
// @grant none
// ==/UserScript==
$(".sliderbox").css('padding', '3px');
$("#hidesidebar").after('<br/><br/><a style="float: right;" href="" id="makeDrag" onclick="return false;"><span class="postLink icon16 textButton">Change Order</span></a>');
var s = $(".sliderbox").length;
$(".sliderbox").wrap('<li id="item-" style="margin-bottom:2px"></li>');
$(window).load( function() {
$('#makeDrag').one('click', function () {
$('#makeDrag').addClass('disabledButton');
$('#sidebar').sortable({ containment: "#sidebar", scroll: false });
});
});