SCNU_JWC

修复华南师范大学教务处恶心的页面

目前为 2018-01-03 提交的版本。查看 最新版本

// ==UserScript==
// @name         SCNU_JWC
// @namespace    scnu_jwc_fixer
// @version      0.5
// @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');
    document.getElementById('txtSecretCode').focus();
    password.style.display = '';
    password.onblur = function(){};
})();