定时刷新网页
// ==UserScript==
// @name 定时刷新网页
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.1
// @description try to take over the world!
// @author You
// @match http://erpx.ser.ltd:9095*
// ==/UserScript==
(function() {
'use strict';
let time=Math.random()*100;
setTimeout(()=>{
window.location.reload()
},Math.floor(time*1000))
// Your code here...
})();