NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @namespace https://openuserjs.org/user/Melimeli // @name Remove Novel Updates Latest Topic // @description Removing "Latest Topic" from novelupdates // @match https://www.novelupdates.com/* // @copyright 2019, Melimeli (https://openuserjs.org/users/Melimeli) // @license MIT // @version 1 // ==/UserScript== (function () { 'use strict'; var elem = document.querySelector('.newfrmposts'); if (elem != null) { elem.parentNode.removeChild(elem); } }());