Greasy Fork

Greasy Fork is available in English.

自动刷新

使用前需要把第15行中的账号改为你的手机号,第16行改为你的密码。

目前为 2021-04-08 提交的版本。查看 最新版本

// ==UserScript==
// @name        自动刷新
// @namespace    http://ccvxx.cn/
// @version      0.1
// @description  使用前需要把第15行中的账号改为你的手机号,第16行改为你的密码。
// @author       术の語、涼城
// @match             *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

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