yolker.be / HideBenoramix

// ==UserScript==
// @name     HideBenoramix
// @description Hide Benoramix post on website anderlecht-online.be
// @include  https://anderlecht-online.be/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
// @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
// @license GPL-3.0-or-later
// ==/UserScript==

waitForKeyElements ("div", actionFunction);

function actionFunction (jNode) {
    $("div.m-reply")  
        .has ("span.m-name:contains('benoramix')")
        .hide ();

}