Code: Select all
(http://www.google.com/url?q=) (SITE RESULT) (LONG RANDOM CHARACTERS)
How to remove that?
Code: Select all
(http://www.google.com/url?q=) (SITE RESULT) (LONG RANDOM CHARACTERS)
Code: Select all
1. http://www.google.com/url?q=http://test.com/&sa=U&ei=rzg7T7qoL8vMrQemkYSHAQ&ved=0CBkQFjAA&usg=AFQjCNEBVht780Hp7tcncYHixcGpF3cXxA
2. http://www.google.com/url?q=http://www.speakeasy.net/speedtest/&sa=U&ei=rzg7T7qoL8vMrQemkYSHAQ&ved=0CCEQFjAB&usg=AFQjCNHqhrrfos_9JBsgf1oMDpRP0HxLLA
3. http://www.google.com/url?q=http://en.wikipedia.org/wiki/Test_cricket&sa=U&ei=rzg7T7qoL8vMrQemkYSHAQ&ved=0CCQQFjAC&usg=AFQjCNF4jC1pg1h8_ByJnXQgjH4UtLshEQ
Code: Select all
1. http://test.com
2. http://www.speakeasy.net/speedtest
3. http://en.wikipedia.org/wiki/Test_cricket
Thank you, 2.3.1rc1 seems to have fixed the problem (FF 10.0.1).Giorgio Maone wrote:It's a new tracking behavior of Google implemented when user has JavaScript disabled.
Work-around in latest development build 2.3.1rc1.
therube wrote:What, where, how is it supposed to work?
Code: Select all
pref("noscript.surrogate.glinks-ns.replacement", "addEventListener('click',function(e){var a=e.target;if(a.href)a.href=a.href.replace(/.*\/url\?url=(http[^&]+).*/,function(a,b)decodeURIComponent(b))},true)");
pref("noscript.surrogate.glinks-ns.sources", "!^https?://[^/]+google\\..*/search");
Of course, if you open the tracking page directly, by voluntarily entering it in your location bar, no doubt you're gonna see it.therube wrote:Still confused then.
JavaScript is not allowed (google.com).
Yet sometimes (quite often) I'll still see the tracking tracking page.
See above.therube wrote: Taking the "First hit" link I posted above, plugging that into the Location Bar & hitting return, most times, I'll see the tracker.
OK, that's why I askedWhat the work-around does is preventing the tracking page from being opened when you click on a search result as presented by Google Search when JavaScript is disabled
Code: Select all
noscript.surrogate.google_preview.sources;
ww.google.com/search?
Code: Select all
noscript.surrogate.google_preview.replacement;
ddEventListener('DOMContentLoaded', function() { Array.forEach(document.getElementsByClassName('vsc'), function(e) { if (e.tagName === 'DIV' && e.hasAttribute('sig')) e.removeAttribute('sig'); }); Array.slice(document.getElementsByClassName('vshid')).forEach(function(e) { if (e.tagName === 'SPAN' && !(e.previousElementSibling && e.previousElementSibling.tagName === 'SPAN' && e.previousElementSibling.classList.contains('gl')) && e.firstElementChild) { e.classList.remove('vshid'); e.classList.add('gl'); e.insertBefore(document.createTextNode(' - '), e.firstElementChild); } }); }, true); addEventListener('load', function() { Array.slice(document.getElementsByClassName('vspib')).forEach(function(e) { e.parentNode.removeChild(e); }); }, false);
Sigh.That's the reason I was still running into the tracker.
Removing that & I look to be working fine.