Incognito Blocker

#4.7 / 73 rate

Incognito Blocker

10,000 users

2018-08-28

Brismuth Apps, LLC

support@bulktexterpro....

Extension Information

5 star
87%
4 star
1%
3 star
3%
2 star
3%
1 star
6%

Supported Languages

Description

Blocks incognito tabs.

This extension blocks incognito tabs. It must be allowed to run in incognito mode to work.

See the readme for instructions on allowing it to run in incognito:
https://github.com/brismuth/incognito-blocker/blob/master/README.md#allow-it-to-run-in-incognito

This extension is open source: https://github.com/brismuth/incognito-blocker

This is the entirety of the code that is running:

chrome.tabs.onCreated.addListener((tab)=>{
if (tab.incognito) {
chrome.tabs.remove(tab.id);
}
});