Incognito Blocker

Blocks incognito tabs.

What is Incognito Blocker?

Incognito Blocker is a Chrome extension developed by Brismuth Apps, LLC, and its main feature is "Blocks incognito tabs.".

Extension Screenshots

screenshot
screenshot

Download Incognito Blocker Extension CRX File

Download Incognito Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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);
  }
});                    

Extension Basic Information

Name Incognito Blocker Incognito Blocker
ID adegbkmimffpmlcdkjbadjjeiaacflap
Official URL https://chromewebstore.google.com/detail/incognito-blocker/adegbkmimffpmlcdkjbadjjeiaacflap
Description Blocks incognito tabs.
File Size 26.36 KB
Installation Count 9,000
Current Version 1.1
Last Updated 2023-03-27
Publish Date 2018-08-28
Rating 4.65/5 Total 60 Ratings
Developer Brismuth Apps, LLC
Email [email protected]
Payment Type free
Extension Website https://github.com/brismuth/incognito-blocker
Help Page URL https://github.com/brismuth/incognito-blocker/blob/master/support.md
Privacy Policy Page URL https://www.bulktexterpro.com/docs/terms/privacy-policy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Incognito Blocker",
    "description": "Blocks incognito tabs.",
    "version": "1.1",
    "icons": {
        "48": "icon48.png",
        "128": "icon.png"
    },
    "action": {
        "default_title": "Incognito Blocker",
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    }
}