is-incognito-mode

1.1.0 • Public • Published

PRs Welcome GitHub license

NPM

is-incognito-mode

👤Function to identify whether browser is in incognito mode 👀

How to use

To install library:

# yarn 
yarn add is-incognito-mode
 
# npm 
npm install is-incognito-mode --save
// ES6 modules
import isIncognito from 'is-incognito-mode';
 
// CommonJS modules
const isIncognito = require('is-incognito-mode').default;
 
/*
  Function returns Promise, which could be:
  - resolved with true, if Incognito mode is opened
  - resolved with false, if regular window is opened
  - rejected if no possibility to identify
*/
isIncognito()
  .then(isPrivate => {
    if (isPrivate) {
      alert('There is no porn! Why are you using Incognito mode?');
    } else {
      console.log('Incognito mode is NOT activated')
    }
  })
  .catch(e => {
    console.log(e.message);
  })

Demo

DEMO can be found here

Incognito Window Regular Window

API

isIncognito: Promise<boolean>

Result Promise is

  • resolved with true, if Incognito mode is opened.
  • resolved with false, if regular window is opened
  • rejected if no possibility to identify

Contributing

is-incognito-mode is open-source library, opened for contributions

License

is-incognito-mode is MIT licensed

Dependencies (1)

Dev Dependencies (5)

Package Sidebar

Install

npm i is-incognito-mode

Weekly Downloads

2

Version

1.1.0

License

MIT

Unpacked Size

174 kB

Total Files

7

Last publish

Collaborators

  • yankouskia