GetBlockSite

GetBlockSite

User Website Blocker

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GetBlockSite",
  "description": "User Website Blocker",
  "version": "1.0.1",
  "manifest_version": 3,
  "default_locale": "en",
  "current_locale": "en",
  "options_page": "options.html",
  "icons": {
    "16": "/icons/16.png",
    "48": "/icons/48.png",
    "128": "/icons/128.png"
  },
  "action": {
    "default_icon": "/icons/128.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "background",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}