Greasy Fork is available in English.

学习通学习次数

🥇支持学习通的学习次数自动刷新增加!打开学习通中任意课程的章节内容,自动刷新,增加学习次数。

// ==UserScript==
// @name         学习通学习次数
// @namespace    http://tampermonkey.net/
// @version      0.7
// @description  🥇支持学习通的学习次数自动刷新增加!打开学习通中任意课程的章节内容,自动刷新,增加学习次数。
// @author       haibing
// @match        *://mooc1.chaoxing.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
  'use strict';

  setInterval(() => {
    window.location.reload(true)
  }, 10000)//10000为刷新的间隔时间,单位为毫秒
})();