// ==UserScript== // @name Aggressively Pure Google Links // @description Strip onmousedown attributes from Google links. // @namespace http://mummila.net/ // @include http://*google.*/search* // ==/UserScript== (function() { links = document.getElementsByTagName("a"); purelinks = [] j = 0; for (var i = 0; i < links.length; i++) { links[i].setAttribute("onmousedown", ""); } })();