Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wongsyrone/b41182929eb7918f96a32e7f5db0ac8b to your computer and use it in GitHub Desktop.
Save wongsyrone/b41182929eb7918f96a32e7f5db0ac8b to your computer and use it in GitHub Desktop.
河北云教育挂课加速器 www.hebyunedu.com
// ==UserScript==
// @name 河北云教育挂课加速器 www.hebyunedu.com
// @namespace Violentmonkey Scripts
// @version 1.1
// @description 河北云教育平台学习课件加速助手
// @match http://www.hebyunedu.com/lms/learning/courseware/*
// @require http://libs.baidu.com/jquery/2.0.0/jquery.min.js
// @grant none
// ==/UserScript==
(function(){
'use strict';
$("#tsinfo2").html("<h1>你正在加速挂课,已挂课<span id='pastm' style='color:#f00'>1</span>分钟</h1><br/><br/><h2>注意:学习时长达到要求时关闭此页面标签即可。</h2>");
showdiv2();
var pt=1;
function pasttime(){
pt=pt+1;
$("#pastm").text(pt);
}
setInterval(pasttime,1000);
setInterval(learningSave,1000);
}
)();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment