By Aaron Bassett
—
Last update
Feb 23, 2007
—
Installed
3,358 times.
// ==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>';
}
}