// ==UserScript== // @name 陕西干部网络学院刷课脚本 // @namespace https://jiaobenmiao.com/ // @version 1.0 // @description 该油猴脚本用于 陕西干部网络学院 的辅助看课,脚本功能如下:自动切换下一视频 // @author 脚本喵 // @match https://www.sqgj.gov.cn/* // @icon https://jiaobenmiao.com/img/logo2.jpg // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; if (location.href.indexOf("/study?flag=") != -1) { setInterval(function () { var video = document.querySelector("video") if (video && video.ended) { nextVideo() } }, 5000) } function nextVideo() { var videoLength = document.querySelectorAll(".vvitem").length for (let i = 0; i < videoLength; i++) { let jindu = document.querySelectorAll(".vvitem")[i].querySelector(".el-progress--without-text").getAttribute('aria-valuenow'); if (jindu == '100') { continue } document.querySelectorAll(".vvitem")[i].click() break } } })();