您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
LC AUTO WATCH
当前为
// ==UserScript== // @name LAW // @namespace http://tampermonkey.net/ // @version 0.2 // @description LC AUTO WATCH // @author You // @match https://edu.inspur.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=inspur.com // @grant none // ==/UserScript== function refreshSchedule(){ const ScheduleText=document.getElementById('ScheduleText').innerText; if(ScheduleText==="100%"){ window.history.back(-1); }else{ console.log(ScheduleText); } } (function() { 'use strict'; phaseTrackIntervalTime = 60000; const tbodyTrainInfo=document.getElementById('tbodyTrainInfo'); const timer=null; clearInterval(timer); timer=setInterval(() => { refreshSchedule(); }, 10000); // Your code here... })();