Skip to content

Instantly share code, notes, and snippets.

@to
Created October 8, 2011 16:47
Show Gist options
  • Save to/1272531 to your computer and use it in GitHub Desktop.
Save to/1272531 to your computer and use it in GitHub Desktop.
Google - Remove Tracking Listener
// ==UserScript==
// @id www.google.com-3ca00d86-e5af-4ad5-beca-fc6012a7500b@to.tumblr.com
// @name Google - Remove Tracking Listener
// @version 1.0
// @namespace to.tumblr.com
// @include http://www.google.com/search*
// @run-at window-load
// ==/UserScript==
setInterval(function process(){
Array.forEach(document.querySelectorAll('.l[onmousedown]'), function(link){
link.removeAttribute('onmousedown');
});
}, 500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment