Ultimate-Guitar Download MP3's

By JoeSimmons Last update Apr 30, 2009 — Installed 137 times. Daily Installs: 0, 1, 1, 2, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 1, 0, 3, 1

There are 1 previous version of this script.

// ==UserScript==
// @name           Ultimate-Guitar Download MP3's
// @namespace      http://userscripts.org/users/23652
// @description    Allows downloading of mp3's on ultimate-guitar.com using a User Script Command.
// @include        http://profile.ultimate-guitar.com/*
// @copyright      JoeSimmons
// @version        1.0.0
// @license        Creative Commons Attribution-Noncommercial 3.0 United States License
// ==/UserScript==

function download() {
if(unsafeWindow.SongsData && unsafeWindow.currentSong) {
	var dl = 'http://mp3.ultimate-guitar.com/' + unsafeWindow.SongsData[unsafeWindow.currentSong][0];
	location.replace(dl);
	}
}

GM_registerMenuCommand('Download currently playing song', download);