// ==UserScript== // @name 智慧树自定义时间停止学习 // @namespace Anubis Ja // @version 0.1 // @description auto // @author Anubis Ja // @match https://study.zhihuishu.com/learningNew/videoList?recruitAndCourseId=* // @grant none // ==/UserScript== window.onload = function() { var time = 10;//秒数 setInterval(function() { --time; console.log(time); if (time == 0) { $("#playButton").click(); alert("时间到,暂停学习"); } }, 1000); };