Greasy Fork is available in English.
国家中小学教育平台的运维,修bug的程序员,我上早八,wcnm,刚出来你妈就修啊,修那么勤快。也没见你家政府网站的漏洞修修啊,xss漏洞和文件上传漏洞都不修笑死我了,这么努力啊,笑死我了,不让我刷我他妈就打你网站,我只想告诉那些程序员,脚本失效了,并不代表我认输了,以后还有可能复活
当前为
// ==UserScript==
// @name 2024年智慧中小学暑假教师研修秒过
// @namespace http://tampermonkey.net/
// @version 1145115.0
// @author Alcex
// @description 国家中小学教育平台的运维,修bug的程序员,我上早八,wcnm,刚出来你妈就修啊,修那么勤快。也没见你家政府网站的漏洞修修啊,xss漏洞和文件上传漏洞都不修笑死我了,这么努力啊,笑死我了,不让我刷我他妈就打你网站,我只想告诉那些程序员,脚本失效了,并不代表我认输了,以后还有可能复活
// @license MIT
// @match https://basic.smartedu.cn/*
// @match https://www.smartedu.cn/*
// @match https://teacher.vocational.smartedu.cn/*
// @match https://core.teacher.vocational.smartedu.cn/*
// ==/UserScript==
(function() {
'use strict';
function skip() {
let video = document.getElementsByTagName('video');
if (video.length > 0) {
video[0].play().catch(function() {});
video[0].pause();
video[0].currentTime = video[0].duration;
video[0].play().catch(function() {});
}
}
function removeModal() {
try {
var f = document.querySelector(".fish-modal-root");
if (f) {
f.remove();
}
} catch (e) {
console.error("Error in removeModal function:", e);
}
}
setInterval(skip, 100);
setInterval(removeModal, 1000);
})();