每30秒自动刷新页面
// ==UserScript==
// @name 自动刷新页面
// @namespace http://tampermonkey.net/
// @version 0.3
// @description 每30秒自动刷新页面
// @author lokua
// @match *://*/*
// @grant none
// @license MI
// ==/UserScript==
// ==UserScript==
// @name 自动刷新页面
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 每5秒自动刷新页面
// @author 你的名字
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(function() {
location.reload();
}, 5000); // 5秒 = 5000毫秒
})();