bjmu partner

bjmu score list get

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        bjmu partner
// @description bjmu score list get
// @namespace   abh
// @author      abh
// @icon        https://static.zhihu.com/static/favicon.ico
// @version     1.02
// @match       http://apps.bjmu.edu.cn/jwapp/sys/zywcjd/*
// @grant       none
// @inject-into context
// @run-at      document-start
// ==/UserScript==
(function() {
    'use strict';
    var age;
    age = prompt("输入你的学号,确定后如果网页加载5s内完成则5s后生效:","");
    var cnmb = age.toString();

setTimeout(function(){
    alert("现在生效");
  var cnm=document.getElementById("row0zywcjd-index-table").cells[1].innerHTML;
    cnm=cnm.replace(/1[0-9]10[0-9][0-9][0-9][0-9][0-9][0-9]/g,cnmb);
    document.getElementById("row0zywcjd-index-table").cells[1].innerHTML=cnm;

} ,5000)

})();