decloak
v1.1.1
Published
An incognito detection script. 4KB when gzipped, works with Chrome 76+, Firefox, IE, and Safari 12.
Downloads
4
Readme
decloak
An incognito detection script. 4KB when gzipped, works with Chrome 76+, Firefox, IE, and Safari 12.
Live Demo
https://codesandbox.io/s/decloak-js-demo-hf98q
Installation
Install with
yarn add decloak
npm install decloak
Usage
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/decloak@latest/dist/bundle.js"></script>
<script>
Decloak.isPrivateMode().then(function (isPrivate) {
console.log("Browsing in private mode? ", isPrivate);
alert("Browsing in private mode? " + isPrivate);
});
</script>
</head>
</html>