RTÉ adbox remover

By Rory McCann Last update Apr 16, 2007 — Installed 80 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==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 );
}