elimina temas y mensajes de ignorados y bloque de publi
// ==UserScript==
// @name Make Forocoches Great Again
// @version 2.0
// @author Sticky
// @description elimina temas y mensajes de ignorados y bloque de publi
// @match https://forocoches.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=forocoches.com
// @grant none
// @run-at document-idle
// @namespace https://greasyfork.org/users/708524
// ==/UserScript==
(function() {
'use strict';
$(function() {
if(window.location.href.includes('forumdisplay.php')) {
$('[id*="td_threadtitle_"][title=""]').parent().remove(); // modo antiguo
$('[id*="thread_title_"][title=""]').parent().parent().parent().parent().hide(); // modo nuevo
}
if(window.location.href.includes('showthread.php')) {
$('a[href="profile.php?do=ignorelist"]').closest('div[align="center"]').remove(); // modo antiguo
$('a[href="profile.php?do=ignorelist"]').closest('div[id^="edit"]').remove(); // modo nuevo
}
$('#vbnotices').remove();
});
})();