Block Sites 2.0

Block Sites 2.0

An all-in-one add-on that lets you custom blocklist, scheduled site blocking, and password protection.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Block Sites 2.0",
  "version": "1.0.0",
  "description": "An all-in-one add-on that lets you custom blocklist, scheduled site blocking, and password protection.",
  "background": {
    "service_worker": "js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "html/dashboard.html",
        "html/popup.html",
        "html/blocked.html",
        "css/custom.css",
        "js/*.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "img/shield-32.png",
    "32": "img/shield-32.png",
    "48": "img/shield.png",
    "128": "img/shield.png"
  },
  "action": {
    "default_icon": "img/shield.png",
    "default_title": "Block Sites",
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "unlimitedStorage",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}