bjmu partner

bjmu score list get

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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

})();