There are 3 previous versions of this script.
// ==UserScript==
// @name Bux.to Re-design Surf Page
// @namespace http://userscripts.org/users/23652/scripts
// @include http://*bux.to/surf.php
// @description Re-design the bux.to surf page to a simpler view
// @copyright JoeSimmons
// @version 1.1
// ==/UserScript==
var i, x, a, stored, storedText, newA, T;
a = document.evaluate("//a[@class='al4']", document, null, 6, null);
stored = new Array();
storedText = new Array();
newA = new Array();
for(i=0; i<a.snapshotLength; i++) {
stored[i] = a.snapshotItem(i).href;
storedText[i] = a.snapshotItem(i).textContent;
}
// Clear ads table and re-do it
T = "<table><tr><td>\n";
for(i=0; i<stored.length; i++) {
if(storedText[i] !== undefined && stored[i] !== undefined) {
T += "<a target=\"_blank\" class=\"al4\" href=\""+stored[i].toString()+"\">"+storedText[i].toString()+"</a><br>\n";
}
}
T += "</td</tr></table>\n";
document.getElementsByTagName("table")[4].innerHTML = T;