Sunday, October 05, 2008

Greasy

I am slightly irritated (I know, it doesn't take much) by the GMail pop up that announces new mail is arriving. I found this Greasemonkey script that keeps that from occurring. I found the script here. Note that the line which begins with document.add..... is all on one line. Be sure to note the 'include' libraries when you define it.

// ==UserScript==
// @name GMail Popup Disabler
// @description Disable the annoying GMail Talk popup.
// @include http://mail.google.com/*
// @include https://mail.google.com/*
// ==/UserScript==

document.addEventListener(’mouseover’, function(event){ event.stopPropagation(); event.preventDefault();}, true);

No comments: