Large

google Enhanced BLACK v3.2.12

By gabedibble Last update Nov 6, 2011 — Installed 622,316 times.

privacy

in
Subscribe to privacy 5 posts, 2 voices



james01 User
FirefoxWindows

i'm curious about your feature to remove search tracking from google. could you please expand on that and how it works exactly. if google cant track the search, does this mean you have the ability to track our searches? i would like to know more about this feature, thanks.

 
gabedibble Script's Author
FirefoxWindows

Ah, good question!

I'll provide both simple and technical responses:


Search Tracking lets Google "remember" everything you click on in the search engine. The option to remove this in the Configuration panel disables the tracking that would happen when you click on result-links.

In no way, shape or form would this script, nor will it ever, violate the user's privacy. It will never track, nor send tracking information; this option simply allows you to customize your own tracking behavior.


Technical: In the open-source spirit of this project, here's how I remove said tracking links:

[JS decompressed from source-version for explanation]

//Remove Search Tracking 
1 function RST() {
2 	if(uRemoveST) {
3  		lAs=document.getElementsByTagName("a");
4 		for(var iC=0; iC < lAs.length; iC++) {
5 			if (lAs[iC].className=="l") {
6 				lAs[iC].removeAttribute("onmousedown");
7 			}
8 		}
9 	}
10 }

Code step-through:
  1. 1>2: Run after 1-second delay, If option checked
  2. 3: Define all page links
  3. 4>5: Loop through and select links with the "l" classname
  4. 6: Remove click-event from selected links (thus negating clicked-link tracking)

^As you can see, there is nothing sinister going on with tracking. As stated above, the option [clearly] just lets you turn Google's "remember what was clicked", on or off.

 
james01 User
FirefoxWindows

its good to know this script doesn't track, but i'm having diffuculty understanding how technically it stops google from tracking? does it also stop google from knowing what the user is searching for?

 
gabedibble Script's Author
FirefoxWindows

When they construct the search-result links, they include an 'onmousedown' function that fires when your mouse-button literally is in the down position (thus a verified click.)

Since any form submissions or the like ("what the user is searching for") are Sent to their site, yes they can and do track that. If you use your Google login @ http://www.google.com/history you'll notice this. So the difference in the history would be that without that configuration-checkmark, the history would also show (not only what you searched for but) what you actually clicked on.

 
james01 User
FirefoxWindows

interesting, thanks for the script.

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel