您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Skips the "Are you human?" captcha's on KissAnime. This will only allow you to watch anime from RapidVideo.
当前为
// ==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;}"); }