Block these URLs, Domains or Keywords

Block these URLs, Domains or Keywords

Site blocker. Blocks URL, Domain or URL with keywords. Redirect.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "4.17",
  "icons": {
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "URL Block",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus"
  ],
  "default_locale": "en",
  "options_page": "settings.html",
  "web_accessible_resources": [
    {
      "resources": [
        "settings.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}