Greasy Fork

(秒过已失效)2024年智慧中小学寒假教师研修秒过

(秒过已失效)秒过2024年智慧中小学寒假教师研修,效果可以见 https://www.bilibili.com/video/BV1pT4m1S7Cd

目前为 2024-02-05 提交的版本。查看 最新版本

// ==UserScript==
// @name         (秒过已失效)2024年智慧中小学寒假教师研修秒过
// @namespace    http://tampermonkey.net/
// @version      0.41
// @author       hydrachs
// @description  (秒过已失效)秒过2024年智慧中小学寒假教师研修,效果可以见 https://www.bilibili.com/video/BV1pT4m1S7Cd
// @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 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);
    });
})();