Bux.to No Images

By JoeSimmons Last update Nov 13, 2008 — Installed 5,550 times. Daily Installs: 13, 5, 9, 9, 7, 6, 11, 9, 6, 10, 1, 7, 8, 9, 7, 13, 2, 7, 12, 21, 47, 3, 7, 13, 9, 3, 5, 7, 6, 10, 7, 12

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);
}