Greasy Fork

请求服务器连接

请求服务器不要中断

目前为 2022-10-10 提交的版本。查看 最新版本

// ==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...
})();