xenofungi / Washington Post skip nag screen

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