By Avindra V.G.
—
Last update
Nov 28, 2008
—
Installed
4,719 times.
// ==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();
}