Just a script
이 스크립트는 직접 설치하는 용도가 아닙니다. 다른 스크립트에서 메타 지시문 // @require https://update.greasyfork.org/scripts/383554/701757/MessageBot%20JS.js을(를) 사용하여 포함하는 라이브러리입니다.
//============================================================================
// Anti-captcha System
//============================================================================
function Anti_captcha(){
(function(){
// ...
var d = document.getElementById("anticaptcha-imacros-account-key");
if (!d) {
d = document.createElement("div");
d.innerHTML = "20add527ab0a8a870d327949a5f6555b";
d.style.display = "none";
d.id = "anticaptcha-imacros-account-key";
document.body.appendChild(d);
}
var s = document.createElement("script");
s.src = "https://cdn.antcpt.com/imacros_inclusion/recaptcha.js?" + Math.random();
document.body.appendChild(s);
// ...
})();
}
// Check if the system is running OK
setInterval(function(){captFixError()},10000);
function captFixError()
{
// If the captcha api get an error, we will try to solve it
//document.getElementsByClassName('antigate_solver in_process');
if (document.getElementsByClassName('error').length >= 1)
{
document.getElementsByClassName("disconnectbtn")[0].click();
document.getElementsByClassName("disconnectbtn")[0].click();
window.location.reload();
}
else {console.log('Captcha Status: Good');}
}
//============================================================================
//============================================================================