bjmu partner

bjmu score list get

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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)

})();