// ==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 // @downloadURL none // ==/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;}"); }