Incognito Blocker

Blocks incognito tabs.

Was ist Incognito Blocker?

Incognito Blocker ist eine Chrome-Erweiterung, die von Brismuth Apps, LLC entwickelt wurde, und ihr Hauptmerkmal ist "Blocks incognito tabs.".

Erweiterungsscreenshots

screenshot
screenshot

Incognito Blocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Incognito Blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Incognito Blocker Incognito Blocker
ID adegbkmimffpmlcdkjbadjjeiaacflap
Offizielle URL https://chromewebstore.google.com/detail/incognito-blocker/adegbkmimffpmlcdkjbadjjeiaacflap
Beschreibung Blocks incognito tabs.
Dateigröße 26.36 KB
Installationsanzahl 9,000
Aktuelle Version 1.1
Letztes Update 2023-03-27
Veröffentlichungsdatum 2018-08-28
Bewertung 4.65/5 Insgesamt 60 Bewertungen
Entwickler Brismuth Apps, LLC
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/brismuth/incognito-blocker
Hilfeseite URL https://github.com/brismuth/incognito-blocker/blob/master/support.md
URL der Datenschutzrichtlinien-Seite https://www.bulktexterpro.com/docs/terms/privacy-policy
Unterstützte Sprachen 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"
    }
}