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-11 提交的版本。查看 最新版本

// ==UserScript==
// @name         KissAnime - AreYouHuman-Skipper (fix)
// @namespace    http://tampermonkey.net/
// @version      1.01
// @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
// @match        http*://kissanime.ru/Special/AreYouHuman*
// @grant        GM_xmlhttpRequest
// @grant        GM_addStyle
// ==/UserScript==

if(document.querySelector('form#formVerify1 .specialButton')) {
  GM_addStyle("#formVerify1 div {display: none !important;}#formVerify1:before {content: 'YES I AM!';color:green;}");
  document.querySelector('form#formVerify1 .specialButton').click();
}
else {
  GM_addStyle("#formVerify1 > div:nth-of-type(1) > p:nth-of-type(1):before{content: 'Yikes! It looks like we hit a snag.';font-weight: bold;color: red;}#formVerify1 > div:nth-of-type(1) > p a:nth-of-type(1) {display: none;}");
}