Incognito Blocker

Blocks incognito tabs.

什么是Incognito Blocker?

Incognito Blocker是由Brismuth Apps, LLC开发的Chrome扩展程序,该扩展的主要功能是“Blocks incognito tabs.”。

扩展截图

screenshot
screenshot

下载Incognito Blocker扩展crx文件

下载Incognito Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Incognito Blocker Incognito Blocker
ID adegbkmimffpmlcdkjbadjjeiaacflap
官方URL https://chromewebstore.google.com/detail/incognito-blocker/adegbkmimffpmlcdkjbadjjeiaacflap
简介 Blocks incognito tabs.
文件大小 26.36 KB
安装次数 9,000
当前版本 1.1
更新时间 2023-03-27
上架时间 2018-08-28
评分 4.65/5 共60次评分
开发者 Brismuth Apps, LLC
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/brismuth/incognito-blocker
帮助页面URL https://github.com/brismuth/incognito-blocker/blob/master/support.md
隐私政策页面URL https://www.bulktexterpro.com/docs/terms/privacy-policy
支持的语言 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"
    }
}