Hide SitePoint Sponsor

By splintor Last update Jan 18, 2006 — Installed 386 times. Daily Installs: 0, 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
// ==UserScript==
// @namespace     http://www.splintor.com/userscript
// @name          Hide SitePoint Sponsor
// @description   Hide SitePoint Sponsor
// @include       http://*.sitepoint.com/*
// ==/UserScript==

var o = document.getElementById("blogads");
if(o)
	o.parentNode.style.display = "none";