您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypassing the https://opizo.me countdown timer by override a local variable called 'count', This variable is the time-intervals counter.
// ==UserScript== // // @name opizo.me - Skip the advertising countdown timer. // @description Bypassing the https://opizo.me countdown timer by override a local variable called 'count', This variable is the time-intervals counter. // // @author AliReza Chegini Aka. nimaarek <[email protected]> // @version 1.0 // @namespace https://github.com/nimaarek // @license MIT // // // @match *://*.opizo.me/* // @run-at document-body // @grant none // @unwrap // // ==/UserScript== // gobal variable var NOP = 0; // main_function const Make_ = { bypass () { // console.log('time-intervals count value:') // console.log(window.count) window.count = NOP } } // Execution of main_function at specified times switch (document.readyState) { case "loading": break; case "interactive": { Make_.bypass(); break; } case "complete": break; } // THE END - GoodGame!