Digi.no ad-remover

By Richard H. Tingstad Last update Apr 4, 2009 — Installed 62 times.
// Version 0.01 Beta
// 
// 20090404 0.01 Initial version.
// 
// ==UserScript==
// @name           Digi.no ad-remover
// @namespace      http://drop.by
// @description    Hides big ad on article page.
// @include        http://www.digi.no/*
// ==/UserScript==
(function () {

var e = document.getElementsByClassName("thisIsAd")[0];
if (e)
 e.parentNode.setAttribute("style", "display: none");

})();