Greasy Fork

Greasy Fork is available in English.

恺睿教育自动点击挂机验证

try to take over the world!

// ==UserScript==
// @name         恺睿教育自动点击挂机验证
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       MC_jjk
// @match        https://www.career99.cn/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    console.info("脚本开始执行!")
    setInterval(function() {
        console.info("脚本执行!")
        var e = document.createEvent("MouseEvents");
        e.initEvent("click", true, true);
        var b = document.getElementsByClassName("punch-time"); b[0].dispatchEvent(e);
    }, 60000);
})();