Is there any way to check browser works with incognito mode or not by using javascript?

Viewed 756

I want to check browser mode by using Javascript. I found this link, but it doesn't work for new version of Chrome. Is there any new way to check this?

1 Answers

This is an old question, but to answer it: yes, you can still detect incognito in Chromium-based browsers. The gist is you call navigator.storage.estimate() and compare the quota property to performance.memory.jsHeapSizeLimit. If the quota is less than jsHeapSizeLimit, it's incognito.

I have a script that you can take a look at.

https://github.com/Joe12387/detectIncognito

Related