Normally, the referrer is traceable through:
- JavaScript's
document.referrer
- The request headers, e.g. PHP's
$_SERVER['HTTP_REFERER']
I have set up a Codepad demo which shows these properties, for testing purposes.
#Requirements:
- The original referrer should effectively be hidden, at least for all mouse events.
- Cross-browser support (at least Chrome and Firefox).
- Stand-alone, without any external content (plugins, libraries, redirection pages, ...).
- No side-effects: Links should not be rewritten, history entries should be preserved.
The solution will be used to hide the referrer when following a link of <a href="url">
.
##Exact description of the use-case As described in this question on Webapps, links at Google Search are modified on click. Consequently,
- Google is able to track your search behaviour (Privacy-- )
- The page request is slightly delayed.
- The linked page cannot track your Google search query (Privacy++ )
- Dragged/Copied URLs look like
http://google.com/lotsoftrash?url=actualurl
.
I'm developing a Userscript (Firefox) / Content script (Chrome) (code), which removes Google's link-mutilating event. As a result, points 1, 2 and 4 are dealt with.
Point 3 remains.
- Chrome:
<a rel="noreferrer">
- Firefox:
data-URIs
. I have created a sophisticated approach to implement this feature for left- and middle-clicks, while still enforcing point 4. However, I'm struggling with the right-click method.
I have found a solution which works in Chrome and Firefox. I've implemented the code in a Userscript, Don't track me Google.
Demo (tested in Firefox 9 and Chrome 17): http://jsfiddle.net/RxHw5/
Referrer hiding for Webkit (Chrome, ..) and Firefox 37+ (33+*)
Webkit-based browsers (such as Chrome, Safari) support
<a rel="noreferrer">
spec.Referrer hiding can fully be implemented by combining this method with two event listeners:
mousedown
- On click, middle-click, right-click contextmenu, ...keydown
(Tab Tab Tab ... Enter).Code:
*
rel=noreferrer
is supported in Firefox since 33, but support was limited to in-page links. Referrers were still sent when the user opened the tab via the context menu. This bug was fixed in Firefox 37 [bug 1031264].Referrer hiding for old Firefox versions
Firefox did not support
rel="noreferrer"
until version 33 `[bug 530396] (or 37, if you wish to hide the referrer for context menus as well).A data-URI +
<meta http-equiv=refresh>
can be used to hide the referrer in Firefox (and IE). Implementing this feature is more complicated, but also requires two events:click
- On click, on middle-click, Entercontextmenu
- On right-click, Tab Tab ... ContextmenuIn Firefox, the
click
event is fired for eachmouseup
and hitting Enter on a link (or form control). Thecontextmenu
event is required, because theclick
event fires too late for this case.Based on data-URIs and split-second time-outs:
When the
click
event is triggered, thehref
attribute is temporarily replaced with a data-URI. The event finished, and the default behaviour occurs: Opening the data-URI, dependent on thetarget
attribute and SHIFT/CTRL modifiers.Meanwhile, the
href
attribute is restored to its original state.When the
contextmenu
event is triggered, the link also changes for a split second.Open Link in ...
options will open the data-URI.Copy Link location
option refers to the restored, original URI.Bookmark
option refers to the data-URI.Save Link as
points to the data-URI.Code:
Combining both methods
Unfortunately, there is no straightforward way to feature-detect this feature (let alone account for bugs). So you can either select the relevant code based on
navigator.userAgent
(i.e. UA-sniffing), or use one of the convoluted detection methods from How can I detect rel="noreferrer" support?.