// ==UserScript== // @name 吉林大学学生VPN助手 // @namespace http://kaaass.net/ // @version 0.1 // @description 允许访问其他校内地址 // @author KAAAsS // @match https://vpns.jlu.edu.cn/* // @grant none // @downloadURL none // ==/UserScript== (function($) { 'use strict'; let content = `
直接连接
`; $(content).insertBefore('.portal-container'); $("#go").click(function(){ go(); }); $('#go_url').keydown(function(e){ if(e.keyCode == 13){ go(); } }); })(jQuery);