NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Star Tribune Paywall Remover // @namespace http://tampermonkey.net/ // @version 0.2 // @description try to take over the world! // @author You // @match https://www.startribune.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=startribune.com // @grant none // @license MIT // ==/UserScript== const isElementLoaded = async selector => { while (document.querySelector(selector) === null) { await new Promise(resolve => requestAnimationFrame(resolve) ) } return document.querySelector(selector); }; (function() { 'use strict'; isElementLoaded('.modal-backdrop').then((element) => { element.remove(); //document.querySelector('body').classList.remove('ReactModal__Body--open'); document.querySelector('body').style.overflow = 'scroll'; }); })();