Greasy Fork

Greasy Fork is available in English.

🥇陕西省专业技术人员继续教育刷课-视频自动连播【影刃】

陕西省专业技术人员继续教育刷课

当前为 2025-02-28 提交的版本,查看 最新版本

// ==UserScript==
// @name         🥇陕西省专业技术人员继续教育刷课-视频自动连播【影刃】
// @namespace    https://doc.yingren.xyz/
// @icon         https://doc.yingren.xyz/img/logo2.jpg
// @version      1.0
// @description  陕西省专业技术人员继续教育刷课
// @author       影刃
// @match        http://jxjy01.xidian.edu.cn/*
// @grant        none
// @license      GPL 3
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function(){

        if (location.href.includes("learnspace/learn/learn/templatethree/content_video.action")) {
            const video = document.querySelector("video");

            if (video) {
                // 当视频结束时重新加载页面
                video.addEventListener("ended", () => {
                    location.reload();
                });

                // 当视频暂停时自动播放
                video.addEventListener("pause", () => {
                    if (!video.ended) {
                        video.play();
                    }
                });
            }
        }
    },1000)
})();