您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
解除草榴反广告过滤限制
// ==UserScript== // @name Anti-Adblock Caoliu // @namespace [email protected] // @description 解除草榴反广告过滤限制 // @author 依然独特 // @version 1.0.0 // @grant unsafeWindow // @run-at document-start // @require https://greasyfork.org/scripts/18715-hooks/code/Hooks.js?version=661566 // @include *://t66y.com/* // @include *://*.t66y.com/* // @match *://t66y.com/* // @match *://*.t66y.com/* // @license BSD 3-Clause // ==/UserScript== ( function () { "use strict"; Hooks.set( unsafeWindow, "jQuery", function ( target, propertyName, ignored, jQuery ) { Hooks.method( jQuery.fn, "ready", function ( target, methodName, method, thisArg, args ) { unsafeWindow[ args[ 0 ].toString().match( /^\s*(.+)\(\);?$/m )[ 1 ] ] = function () { }; return Hooks.Reply.method( [ target, methodName, method, thisArg, args ] ); } ); return Hooks.Reply.set( arguments ); } ); } )();