// ==UserScript== // @name 课程视频助手 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 课程视频防止掉线并设置每分钟更新视频观看时间 // @author 零度 // @match *://course.ucas.ac.cn/portal/site/*/tool/*/video/play?id=* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; portal.forever_keep_alive = function forever_keep_alive(){ clearTimeout(sessionTimeOut); keep_session_alive(); $("#videoState").val("1"); checkTime(); portal.forever_keep_alive_timer = setTimeout('portal.forever_keep_alive()', 60000); } portal.forever_keep_alive(); })();