定时刷新界面
// ==UserScript==
// @name 定时刷新界面
// @namespace http://tampermonkey.net/
// @version 2024-02-18
// @description try to take over the world!
// @author You
// @match http://10.217.240.219:8090/NCMS/welcome
// @icon https://www.google.com/s2/favicons?sz=64&domain=240.219
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.setTimeout(function(){
window.location.reload();
},1400000);
// Your code here...
})();