去除暨南大学登录验证码

在您登陆暨南大学的网站时,你可以使用该脚本去除产生的网易易盾图形滑块验证码。

// ==UserScript==
// @name         去除暨南大学登录验证码
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  在您登陆暨南大学的网站时,你可以使用该脚本去除产生的网易易盾图形滑块验证码。
// @author       Chizuru Chionghwa
// @match        https://icas.jnu.edu.cn/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    //alert("match test");
    $("#captcha").hide();
    $("#index_login_btn").click(function(){
        $("input[name='NECaptchaValidate']").val("wdnmd");
		login();
	});
    $("#errormsg").text("验证码已经给你扬了").show();
})();