Greasy Fork is available in English.
华硕学院防暂停
当前为
// ==UserScript==
// @name accschool刷课防暂停
// @namespace accschool
// @match https://accschool.asus.com.cn/kng/*
// @require https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js
// @grant unsafeWindow
// @grant none
// @version 1.1
// @author jackson
// @description 华硕学院防暂停
// @license MIT
// ==/UserScript==
'use strict';
setTimeout(function(){
document.title = '刷课中……';
// 设置间隔定时器
setInterval(function(){
// 选中播放按钮
var video = $('#videocontainer .vjs-tech #vjs_video_1_html5_api')[0];
video.pause();
video.play();
},600000);
//alert("防暂停脚本已运行");
}, 3000);