Below is a greasemonkey script I created that is used to add a hide button to the system message. It first checks for a cookie (more on that later) and if the cookie is present, it hides the system message. If there is no cookie, it adds a hide button to the system message bar. When you click the system message bar, it hides the message bar, and sets a cookie, that expires in one day. So clicking the hide icon will dismiss the system message for a day, or until the cookie is deleted manually.
// ==UserScript==
// @name StackOverflow Hide System Message
// @namespace www.kibbee.ca
// @description Hides the system message in stackoverflow
// @include http://stackoverflow.com/*
// ==/UserScript==
function getCookie(c_name)
{
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
{
x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
x=x.replace(/^\s+|\s+$/g,"");
if (x==c_name)
{
return unescape(y);
}
}
}
var sysMessageElem = document.getElementById('system-message');
if(sysMessageElem != null && sysMessageElem.innerHTML != '');
{
if(getCookie('HideSOSystemMessage') === '1')
{
sysMessageElem.style.display = 'none';
}
else
{
HideElem = document.createElement('div');
HideElem.innerHTML = 'Hide';
HideElem.style.border = '1px solid black';
HideElem.style.width = '100px';
HideElem.style.height = '100%';
HideElem.style.cursor = 'pointer';
HideElem.style.cssFloat = 'right';
ExpFunc = function(){
var exdate=new Date();
var expDays = 1;
exdate.setDate(exdate.getDate() + expDays);
var c_value=escape('1') + "; expires="+exdate.toUTCString();
document.cookie='HideSOSystemMessage' + "=" + c_value;
sysMessageElem.style.display = 'none';
};
HideElem.addEventListener("click", ExpFunc, false);
sysMessageElem.appendChild(HideElem);
}
}
stackoverflow now has its very own third place - visit the real-time chat at chat.stackoverflow.comI know! I read it the first time it appeared, and the second, and the third... – MarkJ Oct 25 '10 at 16:53