There are 2 previous versions of this script.
// ==UserScript==
// @name Capcha Killer koc v.2
// @namespace http://localhost
// @description fuera control de actividad
// @author HoboBobo , y estrou
// @version 1.0.0
// @include http://apps.facebook.com/kingdomsofcamelot/?s=157
// @include http://apps.facebook.com/kingdomsofcamelot/?s=235
// @exclude
// ==/UserScript==
var contents = document.getElementById("contents");
var link;
if(contents){
if(contents.textContent.match('.*(Routine Check).*')){
link = contents.getElementsByTagName("a")[1].href;
setTimeout(Captcha,250);//use a delay
}
}
function Captcha(){
location.href = link;
}