NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name FC Remove bluefrog // @namespace http://tampermonkey.net/ // @license MIT // @version 0.1 // @description try to take over the world! // @author NeDark // @match https://forocoches.com/foro/forumdisplay.php* // @grant GM_log // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== (function() { function removeThreads($) { // Posponer si DOM no preparado var $topics = $('[id^=threadbits_forum_] > tr'); if (!$topics || $topics.length == 0) { window.setTimeout(function() { removeThreads(jQuery); }, 50); return; } // Ocultar hilos $topics.each(function() { var author = $(this).find("td:eq(2)").children(".smallfont").children("span").text(); if (author.trim() == "bluefrog") $(this).hide() }) }; removeThreads(jQuery); })()