Incognito Blocker

Blocks incognito tabs.

Incognito Blockerคืออะไร?

Incognito Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Brismuth Apps, LLC และคุณลักษณะหลักของมันคือ "Blocks incognito tabs."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Incognito Blocker

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}