Incognito Blocker
Blocks incognito tabs.
Apa itu Incognito Blocker?
Incognito Blocker adalah ekstensi Chrome yang dikembangkan oleh Brismuth Apps, LLC, dan fitur utamanya adalah "Blocks incognito tabs.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Incognito Blocker
Unduh file ekstensi Incognito Blocker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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); } });
Informasi Dasar Ekstensi
Nama | Incognito Blocker |
ID | adegbkmimffpmlcdkjbadjjeiaacflap |
URL Resmi | https://chromewebstore.google.com/detail/incognito-blocker/adegbkmimffpmlcdkjbadjjeiaacflap |
Deskripsi | Blocks incognito tabs. |
Ukuran File | 26.36 KB |
Jumlah Instalasi | 9,000 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2023-03-27 |
Tanggal Publikasi | 2018-08-28 |
Penilaian | 4.65/5 Total 60 Penilaian |
Pengembang | Brismuth Apps, LLC |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/brismuth/incognito-blocker |
URL Halaman Bantuan | https://github.com/brismuth/incognito-blocker/blob/master/support.md |
URL Halaman Kebijakan Privasi | https://www.bulktexterpro.com/docs/terms/privacy-policy |
Bahasa yang Didukung | 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" } } |