isnailweibo autoclick

Auto click button!

// ==UserScript==
// @name         isnailweibo autoclick
// @namespace    http://tampermonkey.net/
// @version      0.5
// @description  Auto click button!
// @author       snaillonely
// @match        http://43.138.16.189/
// @grant        GM_log
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    countDown = setInterval(() => {
        GM_log("button clicked");
        var btn = document.querySelector("#component-13")
        btn.click()
    }, 30000)
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址