Greasy Fork

KissAnime - AreYouHuman-Skipper (fix)

Skips the "Are you human?" captcha's on KissAnime. This will only allow you to watch anime from RapidVideo.

目前为 2019-02-15 提交的版本。查看 最新版本

// ==UserScript==
// @name         KissAnime - AreYouHuman-Skipper (fix)
// @namespace    http://tampermonkey.net/
// @version      1.02
// @description  Skips the "Are you human?" captcha's on KissAnime. This will only allow you to watch anime from RapidVideo. 
// @icon         https://imgur.com/uUILQXQ.png
// @author       Anonymous
// @include      https://kissanime.ru/Special/AreYouHuman*
// @include      http://kissanime.ru/Special/AreYouHuman*
// @grant        GM_xmlhttpRequest
// ==/UserScript==

if(document.querySelector('form#formVerify1 .specialButton')) {
  var form_div = document.getElementById("formVerify1").getElementsByTagName("div");
  for(var i=1;i<form_div.length;i++){
    form_div[i].style.display = "none";
  }
  form_div[0].innerHTML = "<font color='green'>YES I AM!</font>";
  document.querySelector('form#formVerify1 .specialButton').click();
}
else {
  document.getElementById("formVerify1").innerHTML = "<font color='red'>Yikes! It looks like we hit a snag.!</font>";
}