Remove Grooveshark Ad

By Seth Stevenson Last update Dec 19, 2008 — Installed 1,030 times. Daily Installs: 4, 6, 5, 3, 1, 2, 3, 4, 0, 7, 2, 2, 0, 7, 3, 1, 4, 6, 5, 10, 5, 3, 9, 12, 6, 8, 16, 8, 8, 9, 6, 4

There are 3 previous versions of this script.

// ==UserScript==
// @name           Remove Grooveshark Ad
// @namespace      http://www.imsethstevenson.com
// @description    Removes the grooveshark ad to return grooveshark to it's full width glory.
// @version        1.1
// @include        http://listen.grooveshark.com/*
// ==/UserScript==

var adBar = document.getElementById('adBar');
adBar.style.display = 'none';

var mainContentWrapper = document.getElementById('mainContentWrapper');
mainContentWrapper.style.width = "100%";