Greasy Fork is available in English.
中小学智慧云平台教师暑假研修学习脚本(7.28可用但需要重复多点不稳定)
当前为
// ==UserScript==
// @name (依然秒过,需要快速切换视频)2024年中小学智慧教育平台教师暑假研修学习脚本
// @namespace http://tampermonkey.net/
// @version 2027
// @description 中小学智慧云平台教师暑假研修学习脚本(7.28可用但需要重复多点不稳定)
// @author Happy
// @match *://*/*
// @icon https://pic.ntimg.cn/file/20200129/2860708_190811479085_2.jpg
// @grant GM_addStyle
// @license MIT
// ==/UserScript==
function skip() {
let video = document.getElementsByTagName('video')
video[0].play();
video[0].pause();
video[0].currentTime = video[0].duration
video[0].play();
}
setInterval(skip,10000)