LA Times, Paywall Removal

Disables paywall and renables scrolling

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         LA Times, Paywall Removal
// @namespace    http://null
// @version      1.3
// @description  Disables paywall and renables scrolling
// @author       Grant Bacon (@grantbacon)
// @match        *://*.latimes.com/*
// @match        *://www.chicagotribune.com/*
// @match        *://www.baltimoresun.com/*
// @match        *://www.capitalgazette.com/*
// @match        *://www.carrollcountytimes.com/*
// @match        *://www.dailypress.com/*
// @match        *://www.courant.com/*
// @match        *://www.mcall.com/*
// @match        *://www.orlandosentinel.com/*
// @match        *://www.sun-sentinel.com/*
// @match        *://www.dailypress.com/*
// @match        *://www.vagazette.com/*
// @grant        none
// ==/UserScript==


/* 
 * Conveniently enough, the paywall vendor left us a thaw method to unfreeze the page. It is called when the page finishes loading in full.
 *
 * The same can be done by typing "trb.registration.utils.page.thaw();" in your browser console.
 * Or by visiting "javascript:trb.registration.utils.page.thaw();" as a web address while viewing the page.
 *
 * Special thanks to "o" in the Feedback section for pointing out that this script works with other sites
 */

window.onload = (event) => {
    trb.registration.utils.page.thaw();
};