RTÉ adbox remover

By Rory McCann Last update Apr 16, 2007 — Installed 113 times.
// ==UserScript==
// @name           RTÉ adbox remover
// @namespace      http://technomancy.org
// @description    Removes the ad box from RTÉ news stories
// @include        http://www.rte.ie/news/*
// ==/UserScript==

s = document.getElementById('story_island');
if( s ) {
    s.parentNode.removeChild( s );
}