您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在苹果日报网站,允许不订阅阅读新闻。
当前为
// ==UserScript== // @name 苹果日报订阅破解脚本 // @namespace gqqnbig.me // @version 0.2 // @description 在苹果日报网站,允许不订阅阅读新闻。 // @author gqqnbig // @match https://tw.appledaily.com/new/realtime/* // @grant none // @run-at document-start // @noframes // ==/UserScript== (function() { 'use strict'; function hookRemove() { if (typeof(jQuery)!="undefined") { (function ($) { $.fn.trueRemove = $.fn.remove; $.fn.remove = function () { //var ret = oldRemove.apply(this, arguments); return this; }; })(jQuery); clearInterval(handle); $(() => { $(".ndPaywall").trueRemove(); $(".ndArticle_margin").show().css("visibility","visible"); }); } } let handle = setInterval(hookRemove, 10); })();