NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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(); } }); })();