( uid_19334 | 2021. 01. 03., v – 00:04 )

// ==UserScript==
// @name         HUP blocklist userscript
// @version      03-jan-2021
// @description  hides the messages of given users
// @author       bohocmasni
// @match        https://hup.hu/node/*
// @grant        none
// @require      http://code.jquery.com/jquery-3.4.1.min.js
// @run-at       document-idle
// ==/UserScript==

(function() {
    'use strict';

var partial_hide = true
var allow_peek = false

var $ = window.jQuery

var kisbetu_id = 5097
var neutrino_id = 17851

$(' article[data-comment-user-id="' + kisbetu_id
  +'"], article[data-comment-user-id="' + neutrino_id
  +'"]' )
  .each(function( index ) {

    if (partial_hide) {
      $( this ).children().eq(1).hide()
    } else {
      $( this ).hide()
    }

    if (allow_peek) {
      $( this ).click(function(){
        $( this ).children().eq(1).toggle();
      });
    }

});

})();

Próbáld meg ezt, grízlimajommal, nálam működik. 3 módja van, a tetején lehet állítgatni (4-et enged, de 2 egybeesik). Ha több felhasználót akarsz, akkor értelemszerűen a mintaillesztésben a középső sort megsokszorozod.