Great GPA For ZJU JWBINFOSYS

麻麻再也不用担心我的GPA

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 or Violentmonkey 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          Great GPA For ZJU JWBINFOSYS
// @namespace     http://zzeyu.com
// @description   麻麻再也不用担心我的GPA
// @include       http://jwbinfosys.zju.edu.cn/*


// @version 0.0.1.20150410032319
// ==/UserScript==
var tab = document.getElementById("DataGrid1");  //找到这个表格
var rows = tab.rows;               //取得这个table下的所有行
for(var i=1;i<rows.length;i++)
{
   for(var j=0;j<rows[i].cells.length;j++)
   {   
     if(j!=2 && j!=4 && j!=5) continue;
     var cell=rows[i].cells[j];
     if(j==2) cell.innerHTML="100";
     if(j==4) cell.innerHTML="5";
	 if(j==5) cell.innerHTML="&nbsp";
   }
}