您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
2022/8/5 下午5:39:55
// ==UserScript== // @name 学习公社-继续学习 - enaea.edu.cn // @namespace Violentmonkey Scripts // @match https://study.enaea.edu.cn/viewerforccvideo.do // @grant none // @version 1.0 // @author - // @description 2022/8/5 下午5:39:55 // @license MIT // ==/UserScript== console.log('check continue study...') setInterval(function () { // 跳过20分钟休息的提示,继续学习 skip(); }, 3000); function skip(){ var buttons = document.getElementsByTagName("button") if(buttons && buttons.length>0){ for (var i=0;i<buttons.length;i++){ if(buttons[i].innerText=='继续学习'){ buttons[i].click(); } } } }