DepositFiles Cracker (revised) ==> Bypass Time wait / AutoStart Download

By Avindra V.G. Last update Aug 3, 2009 — Installed 6,124 times. Daily Installs: 24, 27, 17, 25, 11, 30, 33, 14, 27, 18, 23, 20, 24, 28, 16, 17, 35, 21, 9, 16, 23, 14, 17, 20, 19, 18, 16, 17, 18, 25, 31, 28

There are 5 previous versions of this script.

// ==UserScript==
// @name           DepositFiles Cracker (revised) ==> Bypass Time wait / AutoStart Download
// @namespace      #avg
// @description    Bypass the countdown, autostarts the download
// @version        0.3.2
// @include        http://*depositfiles.com/*/files/*
// ==/UserScript==
var only=document.evaluate("//div[@class='info']", document, null, 8, null).singleNodeValue;
document.body.innerHTML="";
document.body.appendChild(only);
function tryIt() {
	GM_xmlhttpRequest({
		url : location.href,
		method : "POST",
		data : "gateway_result=1",
		onload : function (A) {
			if (A.responseText.match(/limit_interval">(\d+)/)) {
				document.body.innerHTML+="You reached the limit. Will auto-start in " +  RegExp.$1 + " seconds.";
				setTimeout(tryIt, Number(RegExp.$1 + "000"));
			} else {
				location.href=A.responseText.match(/action="(http:\/\/file[^"]+)/)[1];
			}
		},
		headers : {
			"Content-Type" : "application/x-www-form-urlencoded"
		}
	});
}
tryIt();