Welearn

Welearn 10min刷新一次

目前为 2020-04-21 提交的版本。查看 最新版本

// ==UserScript==
// @name         Welearn
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Welearn 10min刷新一次
// @author       Ash
// @match        *://course.sflep.com/*
// @match        *://welearn.sflep.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    function myrefresh()
    {
        window.location.reload();
    }
    setTimeout(myrefresh,Math.round(Math.random())*600000); //指定10min内刷新一次
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址