您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
jie fang shuang shou#(huaji)
当前为
// ==UserScript== // @name gxb-auto-next // @namespace http://www233.herokuapp.com/index.php/archives/13/ // @version 0.2 // @description jie fang shuang shou#(huaji) // @author Aonshuy // @match https://sdjzu.class.gaoxiaobang.com/* // @grant none // @require https://greasyfork.org/scripts/16536-waitforkeyelements/code/waitForKeyElements.js?version=103451 // ==/UserScript== waitForKeyElements ( "div.progress" , commentCallbackFunction ); //--- Page-specific function to do what we want when the node is found. function commentCallbackFunction () { setInterval(function() { var b=document.querySelector('i.gxb-next-blue'); var a=document.querySelector('span.video-percent').innerHTML; if(a=="100"){b.click();} },3000) }