Incognito Blocker

Blocks incognito tabs.

Vad är Incognito Blocker?

Incognito Blocker är en Chrome-tillägg utvecklad av Brismuth Apps, LLC, och dess huvudfunktion är "Blocks incognito tabs.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Incognito Blocker-förlängningens CRX-fil

Ladda ner Incognito Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Incognito Blocker Incognito Blocker
ID adegbkmimffpmlcdkjbadjjeiaacflap
Officiell webbadress https://chromewebstore.google.com/detail/incognito-blocker/adegbkmimffpmlcdkjbadjjeiaacflap
Beskrivning Blocks incognito tabs.
Filstorlek 26.36 KB
Antal Installationer 9,000
Aktuell Version 1.1
Senast Uppdaterad 2023-03-27
Publiceringsdatum 2018-08-28
Betyg 4.65/5 Totalt 60 Betyg
Utvecklare Brismuth Apps, LLC
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/brismuth/incognito-blocker
Hjälpsida URL https://github.com/brismuth/incognito-blocker/blob/master/support.md
URL till Sekretesspolicy Sidan https://www.bulktexterpro.com/docs/terms/privacy-policy
Stödda Språk 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"
    }
}