There are 4 previous versions of this script.
// ==UserScript==
// @name Bux.to hide clicked ads
// @namespace http://userscripts.org/users/23652
// @description Hide the clicked ads on bux.to. The link is gone so you don't need to refresh, and you wont click it again on accident
// @include http://*.bux.to/surf.php
// ==/UserScript==
var i, a;
a = document.evaluate("//a[contains(@href, 'view.php?ad=')]",document,null,6,null);
for(i=0; i<a.snapshotLength; i++) {
a.snapshotItem(i).setAttribute("onClick", "this.parentNode.parentNode.parentNode.style.display = \"none\";");
}
GM_addStyle("strike {color:transparent !important;}");