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
Eメール [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"
    }
}