Created
December 22, 2020 07:04
-
-
Save leoleoasd/e0fd5a628b34f73a7c4946ce81bd5928 to your computer and use it in GitHub Desktop.
正方教务系统👎
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name 工大教务管理密码自动输入 | |
// @namespace http://leoleoasd.me/ | |
// @version 1.0 | |
// @description Fuck ZFJW! | |
// @author You | |
// @match https://jwglxt.bjut.edu.cn/xtgl/login_slogin.html | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== | |
'use strict'; | |
window.addEventListener("load", function(){ | |
$("#home > input[type=text]:nth-child(2)").remove(); | |
$("#home > input[type=password]").remove(); | |
$("#mm").attr("type","password"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment