NYTimes Remove Flash Ads

By H Mason Last update Mar 10, 2006 — Installed 828 times. Daily Installs: 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0
// ==UserScript==

// @name           NYTimes Remove Flash Ads
// @namespace      http://www.3greeneggs.com
// @description    Remove the hideous, irritating Flash ad from nytimes pages
// @include        *nytimes.com*

// ==/UserScript==

var flashad = document.getElementById('adxBigAd');
if (flashad) {
    flashad.parentNode.removeChild(flashad);
}