Website Blocker for Chrome™

Helps to block websites that you don't need

Website Blocker for Chrome™란 무엇입니까?

Website Blocker for Chrome™은(는) kevinlawson746에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps to block websites that you don't need"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Website Blocker for Chrome™ 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        You can install website blocker on the internet and install it on your computer. Now you can block unwanted spam websites on a single click. manage blocked websites list on dedicated popup page on extension. 

Steps to use the Extension:
1. Install the Website Blocker Extension.
2. Visit the website you want to block.
3. Click on the extension icon on the top and click block website
4. You can manage the blocked websites from edit block list page

 This Website Blocker for Chrome blocks website/URL and app that helps you to manage your website usage and manage distractions. Install this extension to stay focused and safe from unwanted page visits.                    

확장 프로그램 기본 정보

이름 Website Blocker for Chrome™ Website Blocker for Chrome™
ID habaaobnclljeaifmhlaimngklnieedl
공식 URL https://chromewebstore.google.com/detail/website-blocker-for-chrom/habaaobnclljeaifmhlaimngklnieedl
설명 Helps to block websites that you don't need
파일 크기 111 KB
설치 횟수 644
현재 버전 1.0.1
최근 업데이트 2022-08-02
출시 날짜 2022-07-12
평점 5.00/5 총 4 개의 평점
개발자 kevinlawson746
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Website Blocker for Chrome\u2122",
    "version": "1.0.1",
    "description": "Helps to block websites that you don't need",
    "action": {
        "derfault_title": "Website Blocker for Chrome\u2122",
        "default_popup": "popup.html",
        "default_icon": "icon128.png"
    },
    "icons": {
        "16": "icon128.png",
        "32": "icon128.png",
        "48": "icon128.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "blocked.html"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "declarativeNetRequest",
        "activeTab"
    ]
}