bostonglobe.com detects incognito mode |
|||
Issue descriptionIIRC, it's a design principle of incognito mode that it's undetectable. However I've noticed bostonglobe blocks users using incognito. This happens in both mobile and desktop. Screenshot attached. Test URL: http://www.bostonglobe.com/metro/2017/07/03/bush-kennebunkport-the-town-and-its-people-are-part-heartbeat/nDxW0qlyB6mcljoMfU86gK/story.html
,
Jul 5 2017
Within their JS I found a detectPrivateMode function which seems roughly based around this gist: https://gist.github.com/cou929/7973956 The key lines that trigger detection are these: var is_private; if (window.webkitRequestFileSystem) { window.webkitRequestFileSystem( window.TEMPORARY, 1, function() { is_private = false; }, function(e) { console.warn(e); is_private = true; } ); }
,
Jul 5 2017
|
|||
►
Sign in to add a comment |
|||
Comment 1 by paulir...@chromium.org
, Jul 5 2017