ScheduleBlock

ScheduleBlock

Block websites on a schedule

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ScheduleBlock",
  "description": "Block websites on a schedule",
  "version": "1.1.6",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "src/Misc.js",
        "src/Record.js",
        "src/RecordStorage.js",
        "src/options.js",
        "src/content.js",
        "images/ScheduleBlock128.png"
      ]
    }
  ],
  "background": {
    "service_worker": "src/background_loader_mod.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "incognito": "spanning",
  "icons": {
    "128": "/images/ScheduleBlock128.png"
  },
  "options_page": "src/options.html"
}