去除暨南大学JNU相关网站滑动认证
// ==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
// ==/UserScript==
(function() {
'use strict';
//id : captcha
// 在认证页面删除captcha节点,从而避免无意义认证
document.getElementById('captcha').remove();
// Your code here...
})();