Rapidshare auto"Free"click

By stevy Last update Jul 28, 2008 — Installed 1,778 times. Daily Installs: 3, 0, 3, 1, 6, 2, 2, 5, 3, 2, 1, 1, 0, 2, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 2, 2, 1, 0, 0, 1, 0
// ==UserScript==
// @name                Rapidshare auto"Free"click
// @description Removes absolutely everything except for the captcha box from rapidshare.de and rapidshare.com pages, starts download automatically when timer runs out.
// @include       http://rapidshare.com/*
// @include       http://rapidshare.de/*
// @include       http://*.rapidshare.com/*
// @include       http://*.rapidshare.de/*
// ==/UserScript==
// Version 20080702

(function (){

timer=0;

// click on the "free" button
if (free=document.getElementById('ff')) {
    free.submit();
    return
}
else if ((free=document.getElementsByName('dl.start'))&&free[1]) {
    free[1].click();
    return;
}
})();