Make Forocoches Great Again

elimina temas y mensajes de ignorados y bloque de publi

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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();
    });
})();