Site Restricter

Site Restricter

Choose which sites to block (restrict access) in order to reduce distractions and increase focus & productivity

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Site Restricter",
  "description": "Choose which sites to block (restrict access) in order to reduce distractions and increase focus & productivity",
  "version": "0.0.5",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Site Restricter"
  },
  "icons": {
    "16": "/images/logo_16.png",
    "48": "/images/logo_48.png",
    "128": "/images/logo_128.png"
  }
}