Created
May 8, 2010 04:52
-
-
Save umitanuki/394349 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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