By timendum
—
Last update
Dec 1, 2005
—
Installed
766 times.
// NoBoring
// 2005-12-01 version 0.1 BETA!
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "NoBoring", and click Uninstall.
//
// --------------------------------------------------------------------
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// http://www.gnu.org/copyleft/gpl.html
//
// Based on a Netscape 4 bookmarklet by Johan Sundstrým
// Adapted from a script by Jesse Ruderman, http://www.squarefree.com/bookmarklets/
//
// ==UserScript==
// @name NoBoring
// @description Remove mouseover,mouseout,unload,resize events
// @include *
// @author timendum
// @mail " @gmail.com
// ==/UserScript==
(function() {
var H=["mouseover","mouseout","unload","resize"];
if(document.addEventListener)
for(j in H)
document.addEventListener(H[j],function(e){e.stopPropagation();},true);
})();