There are 4 previous versions of this script.
// ==UserScript==
// @name Bux.to No Images
// @namespace http://userscripts.org/users/23652
// @description Doesn't show images on bux.to (faster loading)
// @include http://*bux.to/*
// @exclude http://*bux.to/login.php
// @exclude http://*bux.to/success.php
// @exclude http://*bux.to/view.php?ad=*
// @copyright JoeSimmons
// @version 1.2
// ==/UserScript==
var i, imgs, img, imgL;
imgL = document.images.length;
for(i=0; i<imgL; i++) {
img = document.images[i];
img.parentNode.removeChild(img);
}
