// ==UserScript== // @name 请求服务器连接 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 请求服务器不要中断 // @author You // @match http://https://jiutian.10086.cn/edu/console#/home/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; setInterval(() => { document.getElementsByClassName('operation-text')[6].click() }, 10000); // Your code here... })();