Greasy Fork

郑州信息科技职业技术学院

【郑信科刷课时,因网站的更新,进行了js反调试,所有插件失效,所有我自写了软件替代插件方式,进行自动化刷课,有需要可以加我QQ2428385281】

当前为 2022-05-09 提交的版本,查看 最新版本

// ==UserScript==
// @name         郑州信息科技职业技术学院
// @namespace    http://tampermonkey.net/
// @version      0.0.2
// @description  【郑信科刷课时,因网站的更新,进行了js反调试,所有插件失效,所有我自写了软件替代插件方式,进行自动化刷课,有需要可以加我QQ2428385281】
// @author       lyk
// @match        *://*.open.ha.cn/*
// @require      https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.js
// @grant        none
// @icon         https://www.techcollege.cn/templates_site/zzvuit/main/img/icon_logo.svg
// @license      MIT
// ==/UserScript==
(function() {
	'use strict';
	console.log("郑信科引入完成")
	$(document).ready(function() {

		setInterval(function() {
			// var divTag='<div id="startBtn" style="background-color: rgb(0, 153, 89); border: rgb(0, 153, 89);width: 60px;height: 38px;top:20%;z-index: 10000;position: fixed;border-radius: 20%;">执行程序</div>'
			// document.querySelector("body").innerHTML=divTag
			$(".activitys").each(function(index, element) {
				$(element).attr('style', 'display:block');
			})
		}, 2000);


	})


})();