NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Windows Central Annoyances // @namespace https://openuserjs.org/users/hopkir // @version 0.1 // @description Remove annoyances from Windows Central Website // @author hopkir // @copyright 2021, hopkir (https://openuserjs.org/users/hopkir) // @match https://www.windowscentral.com/* // @license MIT // @grant none // @require http://code.jquery.com/jquery-latest.js // @require https://gist.github.com/raw/2625891/waitForKeyElements.js // ==/UserScript== function deleteIrritatingElements(jNode) { jNode.remove(); } waitForKeyElements(".article-token", deleteIrritatingElements); waitForKeyElements(".article-footer", deleteIrritatingElements); waitForKeyElements(".footer", deleteIrritatingElements); waitForKeyElements(".mobile-leaderboard-320-50", deleteIrritatingElements); waitForKeyElements(".adunit-wrap", deleteIrritatingElements); waitForKeyElements(".region-site-footer", deleteIrritatingElements); waitForKeyElements("#banneradspace", deleteIrritatingElements);