eln-auto-click

eln auto click

// ==UserScript==
// @name         eln-auto-click
// @namespace    http://tampermonkey.net/
// @version      0.1.2
// @description  eln auto click
// @author       You
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @run-at document-end
// @match http://eln.izuche.com/kng/*
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    setInterval(() => {
        console.log('listening');
        var a = document.getElementById('reStartStudy');
        console.log(a);
        if(a){
            console.log('auto click');
            myMousedown = true;
            a.click();
        }
    }, 10 * 1000);
})();