武汉理工大学语文自动刷新网页刷时间

自动刷新网页刷时间

// ==UserScript==
// @name         武汉理工大学语文自动刷新网页刷时间
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  自动刷新网页刷时间
// @author       Chenbh
// @match       http://59.69.102.9/zgyw/study/LearningIndex.aspx
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    //time:5分钟
    let time=300000;
    setTimeout(() => {
        location.reload()
    },time);
    // Your code here...
})();