// ==UserScript== // @name 定时刷新 // @namespace http://tampermonkey.net/ // @version 0.4.2 // @description 定时刷新脚本 // @author hiszm // @match *://*/* // @grant none // @compatible chrome // @license GPL-3.0 // @downloadURL none // ==/UserScript== (function () { 'use strict'; settimeout(location.reload(),1000) })();