Filter Uploads by UL Status

Filter uploads by the uploader's status (Uploader, Verified Uploader, Elite Uploader)

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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;
        }
    });
})();