Krapoutchniek / Qeel no guest

// ==UserScript==
// @name         Qeel no guest
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Supprime les invités du QEEL
// @author       Krapoutchniek
// @match        https://monde-ecriture.com/forum/index.php?action=who
// @grant        none
// @require      https://code.jquery.com/jquery-3.5.1.min.js
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    var qeelTable = $('#whos_online .table_grid');
    $(qeelTable).find('tr').each(function(index) {
        if($(this).find('td .member').first().text().indexOf("Invité") != -1) {
            $(this).remove();
        }
    });
})();