您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Disables paywall and renables scrolling
当前为
// ==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);