Website Blocker for Chrome™

Website Blocker for Chrome™

Helps to block websites that you don't need

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Website Blocker for Chrome™",
  "version": "1.0.1",
  "description": "Helps to block websites that you don't need",
  "action": {
    "derfault_title": "Website Blocker for Chrome™",
    "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": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "blocked.html"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "declarativeNetRequest",
    "activeTab"
  ]
}