Incognito Blocker
Blocks incognito tabs.
Hvad er Incognito Blocker?
Incognito Blocker er en Chrome-udvidelse udviklet af Brismuth Apps, LLC, og dens hovedfunktion er "Blocks incognito tabs.".
Udvidelsesskærmbilleder
Download Incognito Blocker-udvidelses-CRX-fil
Download Incognito Blocker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Incognito Blocker |
ID | adegbkmimffpmlcdkjbadjjeiaacflap |
Officiel URL | https://chromewebstore.google.com/detail/incognito-blocker/adegbkmimffpmlcdkjbadjjeiaacflap |
Beskrivelse | Blocks incognito tabs. |
Filstørrelse | 26.36 KB |
Antal Installationer | 9,000 |
Nuværende Version | 1.1 |
Senest Opdateret | 2023-03-27 |
Udgivelsesdato | 2018-08-28 |
Bedømmelse | 4.65/5 Samlet 60 Bedømmelser |
Udvikler | Brismuth Apps, LLC |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/brismuth/incognito-blocker |
Hjælpeside-URL | https://github.com/brismuth/incognito-blocker/blob/master/support.md |
URL til Fortrolighedspolitik Side | https://www.bulktexterpro.com/docs/terms/privacy-policy |
Understøttede Sprog | 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" } } |