Greasy Fork

LA Times, Paywall Removal

Disables paywall and renables scrolling

目前为 2017-02-17 提交的版本。查看 最新版本

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