|
发表于
2022-7-18 11:43:08
|
显示全部楼层
- // ==UserScript==
- // @name cfile.com auto click
- // @namespace Violentmonkey Scripts
- // @version 1.0
- // @author -
- // @match https://z701.com/d/*
- // @match https://590m.com/d/*
- // @match https://590m.com/f/*
- // @match https://z701.com/f/*
- // @description 5/29/2022, 3:57:37 PM
- // @grant none
- // ==/UserScript==
- 'use strict';
- let timer=setInterval(()=>{
- if($("#passcode").length>0){
- clearInterval(timer)
- load_passcode();
- verify_passcode();
- }
- },100);
复制代码
这样就行了 |
|