cool script...I edited it so that it only lists the first 20 torrents because artists with relatively generic names, like The M's, have rediculously long lists that have nothing to do with the artist
There is a bug in the current version of Greasemonkey which I talk about in that thread. Since this is not directly related to this script, please direct any further discussion there.
// Find the number of the "Name" column var nameCol;
for(var i = 0; i < __tableRows[0].childNodes.length; i++) { if(__tableRows[0].childNodes.innerHTML.indexOf('Name') != -1) nameCol = i; }
if(nameCol != null) {
for (var i = 1; i < __tableRows.length; i++) { if (__tableRows.childNodes.length > 1) { var __currentTD = __tableRows.childNodes[nameCol].childNodes; var __currentLink = __currentTD[__currentTD.length-1];
var html = __currentLink.innerHTML.replace(/(muse5)/ig, '<span class="highlight">$1</span>'); __currentLink.innerHTML = html; } } } } //--></script>