Captcha Pokemon GO

This will help you solve the damm captcha pokemon go without open console

目前为 2016-11-22 提交的版本。查看 最新版本

// ==UserScript==
// @name         Captcha Pokemon GO
// @namespace    https://siakbary.my.id/
// @version      0.2
// @description  This will help you solve the damm captcha pokemon go without open console
// @author       Akbar
// @match        https://pgorelease.nianticlabs.com/plfe/*
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    console.log("can you see me?");
    //document.body.appendChild(document.createElement('script')).src='https://aa2e9e20ba653c1903e8-f9a24a1a98160d8ae95f4a0da76ebd6d.ssl.cf1.rackcdn.com/js/pgo-captcha.js?v=1';
    function captchaResponse(challengeToken){
	 var responseDiv=document.createElement('div');
	 responseDiv.id='response';
	 document.getElementsByTagName('body')[0].appendChild(responseDiv);
	 document.getElementById('response').innerHTML=challengeToken;
    }
    var captchaHTML='<form action="?" method="POST"><div class="g-recaptcha" data-size="compact" data-sitekey="6LeeTScTAAAAADqvhqVMhPpr_vB9D364Ia-1dSgK" data-callback="captchaResponse"></form>';
    document.body.parentElement.innerHTML=captchaHTML;
    var script=document.createElement('script');
    script.src='https://www.google.com/recaptcha/api.js?hl=en';
    script.type='text/javascript';
    document.getElementsByTagName('head')[0].appendChild(script);
})();