DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Greasemonkey -- Allmusic.com Crap-blocker
// ==UserScript==
// @name get rid of amg crap
// @namespace polestar
// @include *allmusic.com*
// ==/UserScript==
(function()
{
inner = 'AMG blocker';
amgCrap = document.getElementById( 'adverttop' );
amgCrap.innerHTML = inner;
amgCrap = document.getElementById( 'header' );
amgCrap.innerHTML = inner;
amgCrap = document.getElementById( 'right' );
amgCrap.innerHTML = inner;
amgCrap = document.getElementById( 'NR' );
amgCrap.innerHTML = inner;
amgCrap = document.getElementById( 'right-sidebar' );
amgCrap.innerHTML = inner;
})();





Comments
Snippets Manager replied on Thu, 2006/03/16 - 10:26pm