惠州学院教务查成绩

在学籍预警处

// ==UserScript==
// @name         惠州学院教务查成绩
// @version      0.1
// @description  在学籍预警处
// @match        *://jwxt.hzu.edu.cn/*
// @run-at       document-start
// @grant        unsafeWindow
// @license MIT
// @namespace https://gf.qytechs.cn/users/1241091
// ==/UserScript==
(async function() {
    'use strict';
    let xhr_bak = XMLHttpRequest.prototype.open;
    XMLHttpRequest.prototype.open = function (_, url) {
        if (/\/xjyj\/xjyj_cxXjyjjdlb.html/.test(url)) {
            this.addEventListener("readystatechange", function () {
                if (this.readyState === 4) {
                    let response = this.responseText;

                    Object.defineProperty(this, "responseText", {
                        writable: true,
                    });

                    this.responseText = JSON.stringify(JSON.parse(response, (key, value) =>
                        (this.bfzcj = key === 'bfzcj' || key !== 'cj' ? value : this.bfzcj)
                    ));
                }
            });
        }
        xhr_bak.apply(this, arguments);
    };
})();

QingJ © 2025

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