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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://github.com/brismuth/incognito-blocker/blob/master/support.md
عنوان صفحة سياسة الخصوصية 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"
    }
}