// ==UserScript== // @name JNU免验证 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 去除JNU相关网站滑动认证 // @author 611 // @match https://icas.jnu.edu.cn/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; //id : captcha // 在认证页面删除captcha节点,从而避免无意义认证 document.getElementById('captcha').remove(); // Your code here... })();