Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/0e0f5b721f12d70c6d9bc0c93515110a.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name 2024年智慧中小学寒假教师研修秒过
// @namespace http://tampermonkey.net/
// @version 0.3
// @author hydrachs
// @description 秒过2024年智慧中小学寒假教师研修,效果可以见 https://www.bilibili.com/video/BV1pT4m1S7Cd
// @license MIT
// @match https://basic.smartedu.cn/*
// @downloadURL none
// ==/UserScript==
(function() {
'use strict';
function setVideoTime() {
var video = document.querySelector('video');
video.currentTime = video.duration;
}
window.addEventListener('load', function() {
setVideoTime();
setVideoTime();
});
window.addEventListener('mousedown', function() {
setTimeout(setVideoTime, 700);
setTimeout(setVideoTime, 500);
});
})();