Welearn

Welearn 10min刷新一次

当前为 2020-04-21 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Welearn
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Welearn 10min刷新一次
  6. // @author Ash
  7. // @match *://course.sflep.com/*
  8. // @match *://welearn.sflep.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Your code here...
  16. function myrefresh()
  17. {
  18. window.location.reload();
  19. }
  20. setTimeout(myrefresh,Math.round(Math.random())*600000); //指定10min内刷新一次
  21. })();