bot4u
// ==UserScript==
// @name 21tb课程通杀
// @namespace bot4u
// @version 0.1
// @description bot4u
// @author perdow
// @match *.21tb.com/els/html/courseStudyItem/courseStudyItem.learn.do?courseId=*
// @require https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js
// @run-at document-end
// @license MIT
// ==/UserScript==
(function() {
'use strict';
window.onload=function lll(){document.getElementsByClassName('title')[0].innerText="BOT FOR YOU"}
function sudu() {
document.querySelector('iframe').contentWindow.document.querySelectorAll('video')[0].playbackRate = 7;
}
setInterval(sudu, 100);//
function enterCourse() {
document.querySelector('iframe').contentWindow.document.querySelectorAll('li.section-item')[document.querySelector('iframe').contentWindow.document.querySelectorAll('li.section-item.finish').length].click();
//window.location.reload()
}
var myTimer = setInterval(enterCourse, 50000);
})();