返回首頁 

Greasy Fork is available in English.

西南交大刷#课

自动刷西南交大(swjtu)的#课


Installer ce script?
Script suggéré par l'auteur

Vous pourriez également aimer 通途.


Installer ce script
// ==UserScript==// @name         西南交大刷#课// @namespace    http://tampermonkey.net/// @version      0.1// @description  自动刷西南交大(swjtu)的#课// @author       kakasearch(qq:1093230325)// @match        https://fzdxpx.swjtu.edu.cn/fzdx/play*// @icon         https://www.google.com/s2/favicons?domain=swjtu.edu.cn// @grant        none// ==/UserScript==(function() {'use strict';let init= setInterval(function(){if(document.querySelector("body > div.public_cont.public_cont1 > div.public_btn > a") && /完整观看一遍/.test(document.querySelector("body > div.public_cont.public_cont1 > div.public_text > p:nth-child(2)").innerText)){document.querySelector("body > div.public_cont.public_cont1 > div.public_btn > a").click()setTimeout(function(){document.querySelector("#video").currentTime=document.querySelector("#video").duration;},1000)}},1000)let next= setInterval(function(){if(document.querySelector("body > div.public_cont.public_cont1 > div.public_btn > a") && document.querySelector("#video").currentTime == document.querySelector("#video").duration ){document.querySelector("body > div.public_cont.public_cont1 > div.public_btn > a").click()clearInterval(next)document.querySelector(" ul > li.video_red1").nextElementSibling.firstElementChild.click()}},200)// Your code here...})();