Incognito Blocker
Blocks incognito tabs.
什麼是Incognito Blocker?
Incognito Blocker是由Brismuth Apps, LLC開發的Chrome擴展程式,該擴展的主要功能是“Blocks incognito tabs.”。
擴展截圖
下載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 |
ID | adegbkmimffpmlcdkjbadjjeiaacflap |
官方網址 | 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" } } |