自动刷新

自动刷新所有网页,修改@match,可自定义刷新指定网页

// ==UserScript==
// @name        自动刷新
// @namespace    http://ccvxx.cn/
// @version      0.2
// @description  自动刷新所有网页,修改@match,可自定义刷新指定网页
// @author       术の語、涼城
// @match             *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    let autoNext = function(){
    location.reload()
}
    setInterval(autoNext, 6000);//6000毫秒执行一次函数</div>
})();