// ==UserScript==
// @name         2024年智慧中小学寒假教师研修秒过
// @namespace    http://tampermonkey.net/
// @version      0.1
// @author       hydrachs
// @description  hahahaha
// @license MIT
// @match        https://basic.smartedu.cn/teacherTraining/courseDetail*
// @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);
    });
})();