// ==UserScript== // @name 自动刷新 // @namespace http://ccvxx.cn/ // @version 0.1 // @description 使用前需要把第15行中的账号改为你的手机号,第16行改为你的密码。 // @author 术の語、涼城 // @match *://*/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... let autoNext = function(){ location.reload() } setInterval(autoNext, 6000);//6000毫秒执行一次函数 })();