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