解决草榴社区(1024) 去广告后隐藏内容的问题

解除草榴广告拦截后的十秒限制

// ==UserScript==
// @name         解决草榴社区(1024) 去广告后隐藏内容的问题
// @namespace    http://zhouyang.cool/
// @version      0.1
// @description  解除草榴广告拦截后的十秒限制 
// @match       *://*.t66y.com/*
// @grant        none
// @license      All Rights Reserved
// ==/UserScript==

(function() {
    'use strict';

    // Store the original setTimeout function
    const nativeSetTimeout = window.setTimeout;

    // Override the setTimeout function
    window.setTimeout = function(callback, delay, ...args) {
        // Modify the delay to be 100 times faster
        let modifiedDelay = delay / 100;

        // Call the original setTimeout with modified delay
        return nativeSetTimeout(callback, modifiedDelay, ...args);
    };
})();