自动刷新网页(自用)

用来自动刷新页面

// ==UserScript==
// @name         自动刷新网页(自用)
// @description  用来自动刷新页面
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       zdy
// @license      MIT
// @match        https://www.xuansi.net/index.php?openid=
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    let time=5000

    setTimeout(() => {
      location.reload()
    }, time);
    // Your code here...
})();