// ==UserScript== // @name LA Times Recipes, Paywall Liberation // @namespace http://null // @version 1.0 // @description Disables paywall and renables scrolling, so you can cook without the BS // @author Hungry Hacker // @match http*://recipes.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 wall 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);