Skip to content

Instantly share code, notes, and snippets.

@leoleoasd
Created December 22, 2020 07:04
Show Gist options
  • Save leoleoasd/e0fd5a628b34f73a7c4946ce81bd5928 to your computer and use it in GitHub Desktop.
Save leoleoasd/e0fd5a628b34f73a7c4946ce81bd5928 to your computer and use it in GitHub Desktop.
正方教务系统👎
// ==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