Greasy Fork is available in English.
中小学智慧云平台寒假研修学习脚本(秒过自测可用)
当前为
// ==UserScript==
// @name 中小学智慧云平台寒假研修学习脚本
// @namespace http://tampermonkey.net/
// @version 2024-02-08
// @description 中小学智慧云平台寒假研修学习脚本(秒过自测可用)
// @author Happy
// @match *://*/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=baidu.com
// @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)