wefunkradio show download

By enix Last update Aug 28, 2009 — Installed 161 times.

There are 3 previous versions of this script.

// ==UserScript==
// @name           wefunkradio show download
// @namespace      http://www.wefunkradio.com/
// @description    Professor Groove and DJ Static team up and break it down to the deep funk, underground hip-hop, and rare grooves on the weekly show WEFUNK. This scripts adds a download link for the mp3 file.
// @include        http://www.wefunkradio.com/show/*
// @require        http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js
// ==/UserScript==

var tracks = unsafeWindow.tracks;
var showNumber = tracks['shownum'];
var showDate   = tracks['showdate'];

var downloadUrl = "http://www.wefunkradio.com/mirror/stream/"+showDate+"/"+showNumber;

$("#hwrap").append("<a href=\""+downloadUrl+"\">Download show</a>");