Fix Links on music.download.com

By deleted user Last update Jun 19, 2005 — Installed 1,243 times.
// ==UserScript==
// @name        Fix Links on music.download.com
// @namespace   http://barkingstars.com/
// @description The URLs on music.download.com are full of rubbish.  This links directly to the MP3s
// @include     http://music.download.com/*
// ==/UserScript==

(function() {
    for (var i=0; i<document.links.length; i++) {
	if (document.links[i].href.match(/^http:\/\/dw.com.com/i)) {
		myRegExp = /desturl=([\w\d%.-]*)/i;
		newUrl = myRegExp.exec(document.links[i].href);
		if(newUrl[1].length > 0) {
			document.links[i].href = unescape(newUrl[1]);
		}
	}
    }
})();