Greasy Fork

Greasy Fork is available in English.

法宣在线挂课辅助

法宣在线-纯挂课辅助,不会有风险,倒计时10分钟后播放音乐提醒提交!

当前为 2018-11-03 提交的版本,查看 最新版本

// ==UserScript==
// @name         法宣在线挂课辅助
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  法宣在线-纯挂课辅助,不会有风险,倒计时10分钟后播放音乐提醒提交!
// @author       Chinario
// @match        http://xf.faxuan.net/sps/courseware*
// @grant        none

// ==/UserScript==

(function() {
    var Rio_TimeOut=setInterval(sense_time,1000);
    function sense_time(){
        console.log("keykeykey");
        if(sps.onlineTime>600 && ($('#audio-init').html()==undefined)){
       var src="<div id='audio-con'><audio id='audio-init' src='http://www.w3school.com.cn/i/song.ogg' autoplay loop></audio><div>";
       $("body").append(src);
       clearInterval(Rio_TimeOut);
       }
    }
    //end of sense_time()
}
)();