// ==UserScript== // @name LA Times, Paywall Removal // @namespace http://null // @version 1.1 // @description Disables paywall and renables scrolling // @author Hungry Hacker // @match http*://*.latimes.com/* // @grant none // @downloadURL none // ==/UserScript== /* * I don't know why I didn't think of this earlier, the vendor left us a little "thaw" method anyway. :) * the delay is because for me at least, some of these page components take a while to load (including the thaw implementation) * * In the opposing words of Donald Trump, this paywall just became 10 feet shorter!!!! * * the same could be done by typing "trb.registration.utils.page.thaw();" in your browser console, or visiting "javascript:trb.registration.utils.page.thaw();" as a web address while viewing the page. */ setTimeout(function() { trb.registration.utils.page.thaw(); }, 750);