Google Click tracking feature secretly tracks which URL on the web results page was clicked by the user. The Google Privacy policy states that Google use this click information to improve the quality of search technology, customized content and advertising.Google is using this click data to refine their search results and pagerank based on which webpages are popular with users and which links are clicked most frequently by Google Users. Yet the Google Click Tracking feature has been a concern for many privacy advocates.
A normal web user is unaware that he is being redirected and the URL text shown in green on the Google search results page is very different from the page title URL that he just click. Google reformats the destination URL so that the click is redirected through Google servers.
How Google Tracks search clicks (or visits) ?
Google embeds a small javascript function in the search results page that redirects any user click via Google webservers.
function rwt(el,ct,cd,sg)
{
var e = window.encodeURIComponent ? encodeURIComponent:escape;
el.href="/url?sa=t&ct="+e(ct)+"&cd="+e(cd)+"&
url="+e(el.href).replace(/\+/g,"%2B")+"&ei=f3NCROGdD6f2qwKh8qT8BA"+sg;
el.onmousedown="";return true;
}
The above javacript rewrites a URL like http://labnol.blogspot.com to something like below:
http://www.google.com/url?sa=t&ct=res&cd=1& url=http%3A%2F%2Flabnol.blogspot.com%2F&ei=f3NCROGdD6f2qwKh8qT8BA &sig2=acgf-_t9eoqUbkKqkoFCfg
Clearly, the web searcher is not aware that he is actually clicking a different URL. Second if one wants to copy the destination URL to the clipboard by right clicking and saying "Copy Link Location" - all you get on the clipboard is this cryptic URL. Either wear lenses and remove all those geeky characters surrounding your URL or better, just copy the text in green on the Google web search results page and append http://.
If you're on Firefox, get the CustomizeGoogle plug-in and it blocks Google from tracking your click-through information. Here's what the extension does internally:
The logic is to take the Google URL if matches the form www.google.com/url and replace it with the value of URL parameter. Neat. It works.
removeUrlClickTrack: function() {
var match = null;
var a = selectAllNodes(document,document.body,"//a");
for (var y=0; y< a.length; y++) {
match = a[y].href.match(/^(http:\/\/www\.google|\/url).
+?q=(http:[^&]+)/i);
if (match) { a[y].href = unescape(match[2]); }
a[y].onmousedown = function() { return true; }
}},
Yahoo click tracking mechanism generates an even more complex web URL but it is much simpler - the URL is appended at the end of the URL.
Google Click tracking is anonymous and uses no cookies. It is also different from Google Search History which shows Personalized Search results.
Find this article at: http://labnol.blogspot.com/2006/04/block-google-from-click-tracking-web.html
web: http://www.labnol.org/ email: amit@labnol.org

Reader Comments
Hey, I dont get this. I have never seen this happening on Google. I carefully checked this once again right now, and definitely the URL is not being redirected for normal search results. However, it happens for the Sponsored Links, which is of course to be expected.
Written on 17/4/06 3:29 PM
Did you see the screenshot above. Google turn on this feature at random times but while I was writing this post, it was on during my entire browser session.
Written on 17/4/06 4:08 PM
There's a trick I do with an app named Aqua Deskperience (http://www.deskperience.com/aqua).
Ctrl+Right click on the text in green, Aqua recognizes the text is a link and opens it with a click on its menu header.
Written on 17/4/06 5:23 PM
For those above, I've definitely seen this from time to time too, but it's not that often.
Written on 17/4/06 8:22 PM