Greasy Fork is available in English.
中小学智慧云平台教师暑假研修学习脚本(秒过自测7月22日可用)
当前为
// ==UserScript==
// @name (秒过)中小学智慧云平台教师暑假研修学习脚本
// @namespace http://tampermonkey.net/
// @version 2025
// @description 中小学智慧云平台教师暑假研修学习脚本(秒过自测7月22日可用)
// @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,1000)