Greasy Fork is available in English.

KissAnime Auto Captcha V3.2

Auto complete KissAnime Captcha

< Feedback on KissAnime Auto Captcha V3.2

Soru/yorum

§
Gönderildi: 15.09.2017

Doesn't work anymore.

The script doesn't work anymore.
Apparently, KissAnime has switched to a new version of the image captcha, which only shows 4 images instead of 5.
I believe that they only just made the change today.

§
Gönderildi: 15.09.2017

I also had this problem. I solved it by changing
29|for(var i =0; i < 5; i++){
to
29|for(var i =0; i < x.length; i++){

n.b. It messed up because the script was attempting to
check a fifth, nonexistent, picture. Instead of just
changing the number, I made it check the found
photos to prevent it from happening again, should
the KissAdmins decide to have a fluctuating number
of pictures.

§
Gönderildi: 15.09.2017
I also had this problem. I solved it by changing 29|for(var i =0; i < 5; i++){ to 29|for(var i =0; i < x.length; i++){ n.b. It messed up because the script was attempting to check a fifth, nonexistent, picture. Instead of just changing the number, I made it check the found photos to prevent it from happening again, should the KissAdmins decide to have a fluctuating number of pictures.

Thanks :)

§
Gönderildi: 15.09.2017
Düzenlendi: 15.09.2017

@Marcus Rockwell The other kiss captcha script NoKissReload [CAPTCHA SKIP] isn't working either. do you think changing slice(0,5) to slice(0,4) would fix it?

§
Gönderildi: 15.09.2017

Probably. I haven't seen the code for that one so I couldn't be sure. I would suggest, if that does work, finding a way to softcode it so the problem doesn't crop up later on.

§
Gönderildi: 15.09.2017
Probably. I haven't seen the code for that one so I couldn't be sure. I would suggest, if that does work, finding a way to softcode it so the problem doesn't crop up later on.

well..... it didn't work. I'll just have to wait for the dev to fix that script then :)

§
Gönderildi: 16.09.2017

Fixed on 2.3

§
Gönderildi: 16.09.2017
Fixed on 2.3

Thanks for the quick fix ?

§
Gönderildi: 01.10.2017

Since yesterday the script won't load for me.
I am not sure if I am the only one, but switching to jquerys ready event fixed the problem.
26| document.getElementsByTagName("body")[0].onload = function(){
35| };
to
26| $( document ).ready( function(){
35| });

§
Gönderildi: 01.10.2017
Since yesterday the script won't load for me. I am not sure if I am the only one, but switching to jquerys ready event fixed the problem. 26| document.getElementsByTagName("body")[0].onload = function(){ 35| }; to 26| $( document ).ready( function(){ 35| });

Hi Akku :)
Wouldn't the script try to click the images a bit later if using the .ready event rather then the .onload event?

§
Gönderildi: 03.10.2017

Seems to not be working again sadly

Cevap paylaş

Yanıt göndermek için oturum açın.