Script
Script
ابتدا در صفحه playراست كليك كرده و گزينه Inspectيا Inspect Elementرا انتخاب كنيد .در صفحه باز شده وارد تب
Consoleشده و در خط انتهايي كد زير را Copy&Pasteكنيد و اينتر را بزنيد و پنجره Inspectرا ببنديد.
موقع Copy&Pasteكردن كد ،ممكنه براي فقط براي بار اول پيغام خطا بده و ازتون بخواد تا كلمه allow pastingرو وارد كرده و
اينتر بزنيد .اين كار رو بكنيد و بعد اسكريپت رو pasteكنيد.
تذكر :فقط حواستون باشه بعد از هر بار رفرش شدن صفحه بايد عمليات كپي كردن اسكريپت دوباره انجام بشه
در موقع چرخش اتومات اسپينر ممكنه كه هر 5دقيقه يكبار كپچا ظاهر بشه و ازتون بخاد كه اثبات كنيد كه شما ربات نيستيد.
براي خودكار شدن اون هم چاره داريم:
فقط كافيه از طريق لينك زير افزونه مخصوص Im not robotرو براي مرورگر فايرفاكس Oنصب كنيد.
https://addons.mozilla.org/fa/firefox/addon/i-m-not-robot-captcha-clicker/
تمام!!!
;var evt
{ = var e
bubbles: true,
view: window,
detail: 0,
screenX: sx,
screenY: sy,
clientX: cx,
clientY: cy,
ctrlKey: false,
altKey: false,
shiftKey: false,
metaKey: false,
button: 0,
relatedTarget: undefined
};
evt = document.createEvent("MouseEvents");
evt.initMouseEvent(type,
e.button, document.body.parentNode);
} else if (document.createEventObject) {
evt = document.createEventObject();
for (prop in e) {
evt[prop] = e[prop];
return evt;
var a = document.getElementsByClassName("spinner")[0],
b = document.getElementById("speed");
a.dispatchEvent(mouseEvent("mousemove", x, y, x, y));
}
function bootStart(){
// "parseInt(b.innerHTML) < 1600": 1600 is the minimum value in RPMs from which the spinner
rotates again.
xInicial += ofParent.offsetLeft;
yInicial += ofParent.offsetTop;
// speedBoot = 20: Time in milliseconds that the mouse pointer would by points (Xs,Ys)
forming a perfect circle.
bootRot(Xs[0], Ys[0]);
setTimeout(function(){
bootRot(Xs[1], Ys[1]);
}, (count++)*speedBoot);
setTimeout(function(){
bootRot(Xs[2], Ys[2]);
}, (count++)*speedBoot);
setTimeout(function(){
bootRot(Xs[3], Ys[3]);
}, (count++)*speedBoot);
// bootStart, 20: Time in milliseconds to swing reset after reaching the minimum RPM value.
// It is recommended that greater values for computers that do not have advanced hardware
configuration!
clearInterval(bootIntervalId);