Alert download ready

By lunrfarsde Last update Oct 29, 2007 — Installed 7,159 times. Daily Installs: 9, 0, 4, 1, 3, 2, 5, 9, 2, 1, 7, 5, 8, 7, 4, 4, 5, 0, 6, 2, 8, 0, 3, 4, 2, 3, 1, 0, 2, 1, 2, 5
// ==UserScript==
// @name           Alert download ready 
// @namespace      http://lunrfarsde.blogspot.com	
// @description    Alerts when the wait period is ended for a download
// @include        http://*rapidshare.de/files/*
// @include        http://*rapidshare.com/files/*
// ==/UserScript==

function checkReady() {
	if (unsafeWindow.c < 3) {
		alert('Ready to download');
	}
	else {
		setTimeout(checkReady, 2000);
	}
}

checkReady();