@WhoRoger to Mildly InfuriatingEnglish • edit-22 years agoWebsites telling me what I can do with my own browser so they can have their pointless cookiesmessage-square104arrow-up1590arrow-down118file-text
arrow-up1572arrow-down1message-squareWebsites telling me what I can do with my own browser so they can have their pointless cookies@WhoRoger to Mildly InfuriatingEnglish • edit-22 years agomessage-square104file-text
minus-square@WhoRogerOPlinkEnglish12•2 years agoI’ll look into that. I believe web sites shouldn’t have any way to detect private mode, right?
minus-squareEavolutionlinkfedilink9•2 years agoI wonder if it tries to save a cookie then read it back? I don’t really know how any of this works but that sounds like a way to detect it that’s fairly infallible.
minus-squarecuriosityLynxlinkfedilink12•2 years agoWriting a cookie and reading it back should work just fine even in incognito mode. It just gets deleted once incognito is closed.
minus-squaredekatronlinkfedilinkEnglish2•2 years agoThere are ways to detect private browsing by querying browser features or behaviours that are different in private browsing. For example, in Firefox calling Navigator.serviceworker returns undefined if private browsing is enabled. Check out this script for ways to detect this in popular browsers: https://github.com/Joe12387/detectIncognito/blob/main/src/detectIncognito.ts
minus-square@[email protected]linkfedilinkEnglish1•2 years agoMaybe incognito enforces CSP more strictly.
I’ll look into that. I believe web sites shouldn’t have any way to detect private mode, right?
I wonder if it tries to save a cookie then read it back? I don’t really know how any of this works but that sounds like a way to detect it that’s fairly infallible.
Writing a cookie and reading it back should work just fine even in incognito mode. It just gets deleted once incognito is closed.
There are ways to detect private browsing by querying browser features or behaviours that are different in private browsing.
For example, in Firefox calling
Navigator.serviceworker
returnsundefined
if private browsing is enabled.Check out this script for ways to detect this in popular browsers:
https://github.com/Joe12387/detectIncognito/blob/main/src/detectIncognito.ts
Maybe incognito enforces CSP more strictly.