Created
October 8, 2011 16:47
-
-
Save to/1272531 to your computer and use it in GitHub Desktop.
Google - Remove Tracking Listener
This file contains hidden or 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== | |
// @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