Greasy Fork

中小学智慧云平台寒假研修学习脚本

中小学智慧云平台寒假研修学习脚本(秒过自测3月4日可用)

目前为 2024-03-04 提交的版本。查看 最新版本

// ==UserScript==
// @name         中小学智慧云平台寒假研修学习脚本
// @namespace    http://tampermonkey.net/
// @version      2.0
// @description  中小学智慧云平台寒假研修学习脚本(秒过自测3月4日可用)
// @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)