Skip to content

Instantly share code, notes, and snippets.

@umitanuki
Created May 8, 2010 04:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save umitanuki/394349 to your computer and use it in GitHub Desktop.
Save umitanuki/394349 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Google no tracking
// @namespace umitanuki
// @description Disable Googe's search page tracking handlers
// @include http://www.google.co.jp/search*
// @include http://www.google.com/search*
// ==/UserScript==
(function(){
var ary = document.getElementsByClassName("l");
for(var i=0, l=ary.length; i<l; i++){
ary[i].removeAttribute("onmousedown");
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment