云班课刷完最新章视频

2020/5/7 下午2:52:14

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        云班课刷完最新章视频
// @match       https://www.mosoteach.cn/web/index.php
// @grant       none
// @version     1.21
// @description 2020/5/7 下午2:52:14
// @namespace https://greasyfork.org/users/535143
// ==/UserScript==
window.onload=function(){
  var zhankai=document.getElementsByClassName("res-row-title")[0];
  var zuiqianzhang=document.getElementsByClassName("hide-div")[0];
  if(zuiqianzhang.style.display=="none"){
    zhankai.click();
  }
  var num=zuiqianzhang.children.length;
  var infos=document.getElementsByClassName("res-info");
  for(var i =0;i<num;i++){
    if(infos[i].children[1].children[6].style.color=="rgb(236, 105, 65)"){
       infos[i].click();
        break;
    }
  }
  setTimeout(function(){
    var mp=document.getElementById("preview-video_native_hls");
    mp.playbackRate=15;
    setInterval(function(){
          mp.onended=function(){
            mp.play();
            setTimeout(function(){
              location.reload();
            },4000)
          }
   },1000)
  },5000)
  
}