修复华南师范大学教务处恶心的页面
目前為
// ==UserScript==
// @name SCNU_JWC
// @namespace scnu_jwc_fixer
// @version 0.4
// @description 修复华南师范大学教务处恶心的页面
// @author scnu_geek
// @match https://jwc.scnu.edu.cn/
// @match https://jwc.scnu.edu.cn/default2.aspx
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementById('Textbox1').remove();
var password = document.getElementById('TextBox2');
password.style.display = '';
password.onblur = function(){};
document.getElementById('txtSecretCode').focus();
})();