Hide iGoogle Attribution

By StealthMonkey Last update Dec 10, 2008 — Installed 418 times.

There are 1 previous version of this script.

// ==UserScript==
// @name           Hide iGoogle Attribution
// @namespace      http://www.stealthmonkey.com
// @description    Hides the Attribution / Created by / Author of user-made iGoogle themes
// @include        http*://www.google.*/ig*
// ==/UserScript==

if (document.getElementById('themeinfo') != null) {
  document.getElementById('themeinfo').style.display = 'none';
}