Remove iframes(ads) on bux sites

By marcin3k Last update Feb 5, 2008 — Installed 8,549 times. Daily Installs: 11, 16, 16, 5, 13, 14, 14, 28, 13, 6, 6, 8, 15, 8, 13, 15, 8, 11, 13, 13, 5, 14, 11, 8, 10, 9, 18, 10, 15, 4, 9, 11
// ==UserScript==
// @name           Remove iframes(ads) on bux sites
// @namespace      http://userscripts.org/users/26666
// @include        *bux*/view.php*
// ==/UserScript==

var i, v = document.getElementsByTagName('iframe');
  for(i= v.length-1;i >= 1; i-- ) {
    v[i].parentNode.removeChild( v[i] );
}