定时刷新脚本
当前为
// ==UserScript==
// @name 定时刷新
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 定时刷新脚本
// @author hiszm
// @match *://*/*
// @grant none
// @compatible chrome
// @license GPL-3.0
// ==/UserScript==
function myrefresh()
{
window.location.reload();
}
setTimeout('myrefresh()',1000); //指定1秒刷新一次