Tampermonkey——自动登录CUG

IsYuh / 2024-01-26 / 原文

// ==UserScript==
// @name         AutoCUG
// @namespace    http://tampermonkey.net/
// @version      2024-01-26
// @description  try to take over the world!
// @author       You
// @match        *://192.168.167.115/*
// @match        *://nap.cug.edu.cn
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
   'use strict';
   function AutoCUG(){
       document.querySelector('#username').value = "账号";
       document.querySelector("#password").value = "密码";
       document.getElementById("login-account").click();
   }
   AutoCUG();
})();