NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Washington Post skip nag screen // @namespace xenofungi.washingtinpost.nagskip // @include https://www.washingtonpost.com/* // @version 1 // @grant none // @run-at document-end // ==/UserScript== (function removeNag(){ var elem = document.getElementById('drawbridge-root'); // if nag screen is not yet shown if (elem === null) { // wait for half a second window.setTimeout(removeNag, 500); } else { elem.parentNode.removeChild(elem); $('link[rel=stylesheet][href*="drawbridge"]').remove(); } })();