2chMailGayCaptcha

Майловская пидорская капча

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name 2chMailGayCaptcha
// @description Майловская пидорская капча
// @include https://2ch.hk/*
// @version 1.0.3
// @grant none
// @namespace mynigga
// ==/UserScript==

$(document).ready(function () {
	
	window.nocaptchaOptions = {publicKey: "033bbbe453f794e3cb39f856277cd3ec"};
	
	var nocaptchascript = document.createElement('script');
	nocaptchascript.src = 'https://api-nocaptcha.mail.ru/nocaptcha.js';
	document.body.appendChild(nocaptchascript);
	
	nocaptchascript.onload = function() {
		nocaptcha.create('#nocaptcha1', {hidden: false, tabindex: 3});
		nocaptcha.verify('#nocaptcha1');
		nocaptcha.create('#nocaptcha2', {hidden: false, tabindex: 3});
		nocaptcha.verify('#nocaptcha2');
	}
	
	window.requestCaptchaKey = function(){ return false; };
	window.loadCaptcha = function(){ return false; };
	window.config.captchaKey = -1;
	$('input[name="captcha_type"]').val('mailru');
	$('#postform .captcha-box').empty().append('<div id="nocaptcha1"></div>');
	$('#qr-postform .captcha-box').empty().append('<div id="nocaptcha2"></div>');
	$('#qr-submit,#submit').attr('onClick','SendClickHandle();');
	$('.rules-area .rules:first-child').html('Абу - хуй, пасскодоблядь не человек.');

});

window.SendClickHandle = function() {
	nocaptcha.reset('#nocaptcha1');
	nocaptcha.verify('#nocaptcha1');
	nocaptcha.reset('#nocaptcha2');
	nocaptcha.verify('#nocaptcha2');
}