bjmu partner

bjmu score list get

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

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.

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

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

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)

})();