// ==UserScript== // @name 师学通学习助手 // @namespace http://tampermonkey.net/ // @version 0.0.1 // @description 师学通学习助手 beta // @author useeseeu // @match *.stu.teacher.com.cn/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // ==/UserScript== (function() { 'use strict'; console.log('---------师学通学习助手-----------') // 允许切换页面 setInterval(function() { if (pageStatus != undefined) { if (pageStatus == 0) { pageStatus = 1; } } }, 1000); // 播放结束时自动下一个 const on_CCH5player_ended_new = function(video,vid) { clearInterval(time10); clearInterval(StudyTimeClockEle); player.normalScreen() // let nextVideo = $('.type_1.Learned2.active').next(); if (nextVideo) { $(nextVideo).click(); } } const onPlayReady_new = function() { player && player.play(); } setTimeout(function() { window.onPlayReady = onPlayReady_new; window.on_CCH5player_ready = onPlayReady_new; window.on_CCH5player_ended = on_CCH5player_ended_new; console.log(player); onPlayReady_new(); }, 5000) })();