Incognito Blocker
Blocks incognito tabs.
Wat is Incognito Blocker?
Incognito Blocker is een Chrome-extensie ontwikkeld door Brismuth Apps, LLC, en de belangrijkste functie is "Blocks incognito tabs.".
Extensie Screenshots
Download het CRX-bestand van de extensie Incognito Blocker
Download Incognito Blocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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); } });
Basisinformatie over de Extensie
Naam | Incognito Blocker |
ID | adegbkmimffpmlcdkjbadjjeiaacflap |
Officiële URL | https://chromewebstore.google.com/detail/incognito-blocker/adegbkmimffpmlcdkjbadjjeiaacflap |
Beschrijving | Blocks incognito tabs. |
Bestandsgrootte | 26.36 KB |
Aantal Installaties | 9,000 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2023-03-27 |
Publicatiedatum | 2018-08-28 |
Beoordeling | 4.65/5 Totaal 60 Beoordelingen |
Ontwikkelaar | Brismuth Apps, LLC |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/brismuth/incognito-blocker |
Help Pagina-URL | https://github.com/brismuth/incognito-blocker/blob/master/support.md |
URL van de Privacybeleid Pagina | https://www.bulktexterpro.com/docs/terms/privacy-policy |
Ondersteunde Talen | 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" } } |