Skip to content

Instantly share code, notes, and snippets.

@Leo7654
Created May 31, 2017 02:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Leo7654/ffebb9b561b0f110ba01a0717d4c91b2 to your computer and use it in GitHub Desktop.
Save Leo7654/ffebb9b561b0f110ba01a0717d4c91b2 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name 본인인증 헬퍼
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://nice.checkplus.co.kr/CheckPlusSafeModel/checkplus.cb*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const url = window.location.href;
if (url.match(/checkplus\.cb\?m=auth_mobile_main/)) {
getMvnoList();
$('#checkmobileco02').click();
goMvnoAuth();
} else if (url.match(/checkplus\.cb$/)){
if ($('#birthdate').length === 0) {
authChange('BASICAUTH');
}
genderClick('1');
$('#username').val('이호진');
$('#birthdate').val('19861102');
$('#mobileno').val('01025687654');
$('#kisChk1').click();
$('#kisChk2').click();
$('#kisChk3').click();
$('#kisChk4').click();
}
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment