Incognito Blocker

Blocks incognito tabs.

Incognito Blocker란 무엇입니까?

Incognito Blocker은(는) Brismuth Apps, LLC에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blocks incognito tabs."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Incognito Blocker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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"
    }
}