NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Remove Topics Under Threads - MAL
// @namespace https://openuserjs.org/users/shaggyze/scripts
// @updateURL https://openuserjs.org/meta/shaggyze/Remove_Topics_Under_Threads_-_MAL.meta.js
// @downloadURL https://openuserjs.org/install/shaggyze/Remove_Topics_Under_Threads_-_MAL.user.js
// @copyright 2022, shaggyze (https://openuserjs.org/users/shaggyze)
// @version 0.3
// @description Remove Topics Under Threads on MAL
// @author ShaggyZE
// @match *://myanimelist.net/forum/*
// @icon https://shaggyze.website/MAL.png
// @run-at document-end
// @grant none
// @license MIT; https://opensource.org/licenses/MIT
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('table[class*="forum-topics"]').forEach(a => a.remove()); //Remove all forum-topics tables
document.querySelectorAll('div[class*="border_solid mt24"]').forEach(a => a.remove()); //Remove all border_solid mt24 divs
})();