Netload.in [time limit remover / captcha helper]

By Avindra V.G. Last update Nov 28, 2008 — Installed 4,719 times. Daily Installs: 5, 11, 20, 8, 8, 7, 13, 12, 4, 6, 9, 8, 6, 4, 10, 10, 5, 2, 5, 13, 9, 4, 6, 8, 8, 2, 7, 5, 9, 13, 2, 6
// ==UserScript==
// @name           Netload.in [time limit remover / captcha helper]
// @namespace      #avg
// @description    auto-download netload.in
// @include        http://*netload.in/*
// @version        0.1
// ==/UserScript==
var single=function(x){return document.evaluate(x,document,null,9,null).singleNodeValue},
    $=function(x){return document.getElementById(x)}
    freeBtn=single("//div[@class='Free_dl']/a");

if (freeBtn)
	location.replace(freeBtn.href);
else {

$("changeDiv").style.display = "none";
$("downloadDiv").style.display = "inline";
single("//input[@name='captcha_check']").focus();

}