HRG刷课

try to take over the world!

目前為 2019-11-20 提交的版本,檢視 最新版本

// ==UserScript==
// @name         HRG刷课
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Bruce Wayne
// @match        http://hiiri.yunxuetang.cn/kng/course/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    alert("start script\n");
    setInterval(onTimer,1000*60*5.2);
})();
function onTimer()
{
    console.log("call onTimer");
    document.querySelector("input[value='继续学习']").click();
}