Yahoo front page clean-up

By Dave C Last update Jul 18, 2008 — Installed 396 times. Daily Installs: 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           Yahoo front page clean-up
// @namespace      userscripts.org
// @description	   removes the RECT ad and uses the new, purple logo
// @include        http://www.yahoo.com/
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('#addiv, #adlnk { display:none; }');
document.getElementById("ylogo").src = "http://l.yimg.com/a/i/ww/sp/as_logo.gif";