Rapidshare fixer v1.2

By K3rN3L Last update Jan 3, 2009 — Installed 2,527 times. Daily Installs: 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 5, 1, 1, 1, 0, 0, 0, 0

There are 1 previous version of this script.

// ==UserScript==
// @name          Rapidshare fixer v1.2
// @namespace     K3rN3L http://userscripts.org/users/52751/scripts
// @description   fixes some rapidshare issues.
// @description   made by K3rN3L & Hlinker (members of www.TuniTech.net)
// @include       http://*.rapidshare.com/*
// @include       http://rapidshare.com/*
// @exclude       http://rs*.rapidshare.com/*
// ==/UserScript==

var lien=location.href;
if((lien.indexOf('www.rapidshare')==-1)&&(lien.indexOf('ssl.rapidshare')==-1)&&!(done)){
	window.location.replace("http://www." + lien.substring(lien.indexOf("")+7));
//it only does simple url rewriting to make rapidshare accessible again...

}