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)
})();