// ==UserScript== // @name 武汉理工大学语文自动刷新网页刷时间 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 自动刷新网页刷时间 // @author Chenbh // @match http://59.69.102.9/zgyw/study/LearningIndex.aspx // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; //time以毫秒为单位 let time=300000; setTimeout(() => { location.reload() },time); // Your code here... })();