// ==UserScript== // @name 华师在线学习 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 华师在线学习-自动学习 // @author Wellen // @match *://gdou.scnu.edu.cn/learnspace/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... setInterval(function () { console.log('click start >>> '+ new Date()); $('.layui-layer-btn0').click(); console.log('click end'); }, 60000); })();