Filter oper.ru comments by user's name

enter something useful

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey 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 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 oper.ru comments by user's name
// @namespace    http://your.homepage/
// @version      0.1
// @description  enter something useful
// @author       You
// @match        http://oper.ru/*read.php*
// @grant        none
// @locale       en
// ==/UserScript==


$(document).ready(function() {
    'use strict';

    var otherCommentsHidden = false;

    function getUsername(commentTable) {
        return $(commentTable).find('a:first').text().trim();
    }

    function iterateComments(markHidden, usernameToDisplay) {
        $('.comment').each(function(index, commentTable) {
            var username = getUsername(commentTable);

            if (markHidden && usernameToDisplay != username) {
                $(commentTable).hide();
            }
            else if (!markHidden) {
                $(commentTable).show();
            }
        });
        otherCommentsHidden = !otherCommentsHidden;
    }

    $('.comment').each(function(index, commentTable) {
        var username = getUsername(commentTable);
        $(commentTable).find('a:first').after('<a id="filterUserName">+</a>'); // Add link for filter
        $(commentTable).find('#filterUserName').click(function() {
            iterateComments(!otherCommentsHidden, username);
        });
    });

});