Greasy Fork is available in English.
修复华南师范大学教务处恶心的页面
当前为
// ==UserScript==
// @name SCNU_JWC
// @namespace scnu_jwc_fixer
// @version 0.2
// @description 修复华南师范大学教务处恶心的页面
// @author 0NG
// @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 = '';
})();