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文件

下载Website Blocker for Chrome™扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}