Greasy Fork

重庆继续教育选修小节自动播放

只支持选修小节自动播放

目前为 2019-09-12 提交的版本。查看 最新版本

// ==UserScript==
// @name         重庆继续教育选修小节自动播放
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  只支持选修小节自动播放
// @author       moxiaoying
// @match        https://rcpx.21tb.com/els/html/courseStudyItem/courseStudyItem.learn.do*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
//     var org_text = $('.cl-catalog-playing').text();
    setInterval(function(){
//         var now_text = $('.cl-catalog-playing').text();
        var min_time = parseInt($('#minStudyTime').text());
        var studied_time =  parseInt($('#studiedTime').text());
        if(min_time-studied_time<=1){
            window.location.reload();
        }
        console.log('studied_time:'+studied_time+'min_time:'+min_time);
    }, 1000*60);
    // Your code here...
})();