Bebo Music Download

By Aaron Bassett Last update Feb 23, 2007 — Installed 3,358 times. Daily Installs: 2, 0, 0, 2, 0, 1, 0, 0, 0, 2, 2, 0, 6, 3, 2, 1, 2, 1, 2, 1, 5, 1, 4, 4, 7, 0, 0, 3, 0, 2, 1, 2
// ==UserScript==
// @name           Bebo Music Download
// @namespace      http://www.foobr.co.uk
// @description    Creates download mp3 links for bebo
// @include        *bebo.com*
// ==/UserScript==


var scs = document.getElementsByTagName("script");
var url = '';
var name = '';
for(var i=0; i < scs.length; i++) {
	url = scs[i].innerHTML;
	if(url.match(/getPlayer\(escape/)) {
		url = url.replace(/getPlayer\(escape\(\'/, '');
		url = url.replace(/\'\)\);/, '');
		
		name = scs[i].parentNode.nextSibling.innerHTML;
		scs[i].parentNode.nextSibling.innerHTML = '<a href="'+ url +'">'+name+'</a>';
	}
}