There are 1 previous version of this script.
// ==UserScript==
// @name Rapidshare Automater
// @namespace aeosynth
// @description Automates downloading for free users. Shows time remaining in tab title, or 'Error' if, say, you're attempting to download multiple files at once.
// @include http://rapidshare.com/*
// @include http://*.rapidshare.com/*
// ==/UserScript==
var button = document.getElementsByTagName('input')
if(button.length)
button[1].click()
else{
var dl = document.getElementById('dl')
if(dl){
var wait = dl.textContent.match(/\d+/)
var title = window.setInterval(function(){testan(wait--)}, 1000)}
else{
var wait = document.getElementsByClassName('klappbox')[0].textContent.match(/\d+(?= minutes)/)
if(wait){
document.title = wait + ' minutes'
window.setInterval(function(){waitan(--wait)}, 60000)}
else
document.title = 'Error'
}}
function waitan(i){
if(wait == 0)
window.location.reload()
document.title = i + ' minutes'
}
function testan(i){
document.title = i
if(i == 0){
window.clearInterval(title)
button = document.getElementById('dl').getElementsByTagName('input')
button[button.length - 1].click()
}}
