Greasy Fork is available in English.
本次是最初版,现在只能做到打开一个视频之后,超过五分钟不会自动暂停,以后会慢慢完善,如果有问题请联系QQ:857910164
当前为
// ==UserScript==
// @name 云学堂自动刷课
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 本次是最初版,现在只能做到打开一个视频之后,超过五分钟不会自动暂停,以后会慢慢完善,如果有问题请联系QQ:857910164
// @author You
// @match *.yunxuetang.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
setInterval(function() {
if (RemoveWarningHtml) {
RemoveWarningHtml();
if (console && console.log) {
console.log('执行了:RemoveWarningHtml()');
}
}
}, 2000);
})();