deviantUNANNOY

By Matthias Bauer Last update Jul 19, 2005 — Installed 4,799 times.
// ==UserScript==
// @name         deviantUNANNOY
// @namespace    net.moeffju.dA
// @description  Makes deviantART bearable for non-subscribers
// @include      http://*.deviantart.com/*
// ==/UserScript==

// © 2005 Matthias Bauer <http://moeffju.deviantart.com/>

var d = 100;
var f = function () {
  var x = document.getElementById('sponsors');
  if (x) x.parentNode.removeChild(x); else setTimeout(f,d);
}
setTimeout(f,d);