您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
秒过2024年智慧中小学暑假教师研修,有问题可以联系我QQ3591299887。最新版本跳过视频
当前为
// ==UserScript== // @name 2024年智慧中小学暑假教师研修秒过 // @namespace http://tampermonkey.net/ // @version 1.0 // @author Alcex // @description 秒过2024年智慧中小学暑假教师研修,有问题可以联系我QQ3591299887。最新版本跳过视频 // @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 m() { var v = document.querySelector("video"); if (v && v.duration) { if (v.paused) { v.play().catch(function() {}); } else { v.dispatchEvent(new Event("ended")); v.muted = true; if (isFinite(v.duration)) { v.currentTime = Math.floor(v.duration); } v.play().catch(function() {}); } } setTimeout(m, 1000); } function r() { var f = document.querySelector(".fish-modal-root"); if (f) { f.remove(); } setTimeout(r, 1000); } m(); r(); })();