您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Filter uploads by the uploader's status (Uploader, Verified Uploader, Elite Uploader)
// ==UserScript== // @name Filter Uploads by UL Status // @namespace pxgamer // @version 0.2 // @description Filter uploads by the uploader's status (Uploader, Verified Uploader, Elite Uploader) // @author pxgamer // @include *kat.cr/new/* // @include *kat.cr/usearch/* // @grant none // ==/UserScript== (function() { 'use strict'; $('.data').before('<div class="buttonsline"><select id="ul-status-select" style="letter-spacing: 0px; width: 160px !important;"><option value="all">Show All Uploaders</option><option value="uploader">Show only Normal Uploaders</option><option value="verified">Show only Verified Uploaders</option><option value="elite">Show only Elite Uploaders</option></select> <button class="siteButton bigButton" id="sortUlStatus"><span>Sort</span></button></div>'); $('#sortUlStatus').on('click', function() { var ulSortType = $('#ul-status-select').val(); switch (ulSortType) { case 'all': $('table.data tr').show(); $('.ka.ka-verify').parent().parent().parent().parent().show(); break; case 'uploader': $('table.data tr').show(); $('.ka.ka-verify').parent().parent().parent().parent().hide(); $('.ka.ka-star').parent().parent().parent().parent().parent().hide(); break; case 'verified': $('table.data tr').hide(); $('.ka.ka-verify').parent().parent().parent().parent().show(); break; case 'elite': $('table.data tr').hide(); $('.ka.ka-star').parent().parent().parent().parent().parent().show(); break; default: $('table.data tr').show(); break; } }); })();