您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove Paywall from The Times
当前为
// ==UserScript== // @name The Times Paywall Bypass // @namespace http://tampermonkey.net/ // @version 0.1 // @description Remove Paywall from The Times // @author Espaker Kaminski // @match *://*.thetimes.co.uk/article/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; document.getElementById('paywall-portal-article-footer').remove() document.getElementById('paywall-portal-page-footer').remove() document.getElementsByClassName('group-3')[0].remove() document.getElementsByClassName('tc-view__TcView-nuazoi-0 responsive-sc-15gvuj2-0 gyLkkj')[0].remove() })();