BlockSite: Focus Shield & Free Site Blocker

BlockSite: Focus Shield & Free Site Blocker

Boost productivity & Stay Focused. Create website blocklist, block sites by words, 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",
  "name": "BlockSite: Focus Shield & Free Site Blocker",
  "description": "Boost productivity & Stay Focused. Create website blocklist, block sites by words, scheduled site blocking, and password protection",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Focus Shield",
    "default_icon": "icon_16.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ]
}