By Dave C
—
Last update
Feb 3, 2009
—
Installed
323 times.
// ==UserScript==
// @name Yahoo Mail Connections bar remover
// @namespace userscripts.org
// @description Yahoo added a connections bar to the top of the Inbox. To me it's useless and just takes up space. This script gets rid of it. You need to resize your browser after page load and the Inbox will properly redraw.
// @include http://*mail.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('#filterbar { display:none; }');