Website Blocker for Chrome™

Helps to block websites that you don't need

Website Blocker for Chrome™ là gì?

Website Blocker for Chrome™ là một tiện ích mở rộng Chrome được phát triển bởi kevinlawson746, và tính năng chính của nó là "Helps to block websites that you don't need".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Website Blocker for Chrome™

Tải xuống các tệp mở rộng Website Blocker for Chrome™ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Website Blocker for Chrome™ Website Blocker for Chrome™
ID habaaobnclljeaifmhlaimngklnieedl
URL Chính Thức https://chromewebstore.google.com/detail/website-blocker-for-chrom/habaaobnclljeaifmhlaimngklnieedl
Mô tả Helps to block websites that you don't need
Kích Thước Tệp 111 KB
Số Lần Cài Đặt 644
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2022-08-02
Ngày Phát Hành 2022-07-12
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển kevinlawson746
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}