序数增量助手
// ==UserScript==
// @name 序数增量小助手
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author 咸王
// @match https://g1tyx.github.io/ordinal-markup/
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.io
// @grant none
// ==/UserScript==
(function() {
'use strict';
let dj= setInterval(() => {
try{
var bt1=document.getElementsByClassName("normalButton canThicc thicc")[0]
var bt2=document.getElementsByClassName("normalButton canThicc thicc")[1]
bt1.click()
bt2.click()
}
catch(e) {
}},5)
let cs= setInterval(() => {
try{
var bt3=document.getElementsByClassName("normalButton canThicc thicc")[2]
bt3.click()
}
catch(e) {
}},1000)
// Your code here...
})();
- 上一篇
无限按钮模拟器助手
F12控制台复制输入以下代码回车// ==UserScript==// @name 按钮小助手v0.2// @namespace http://tampermonkey.net/// @version 0.2// @description try to take over the world!// @author xianwang// @matc...
- 下一篇
超级乌龟放置自动点击小丑龟
// 设置定时器,并保存返回的定时器IDvar timerId = setInterval(function() { var turtle = document.getElementById('tortugaClick'); if (turtle) { turtle.click(); } else { console.log('...