Dynamic Website Blocker

Dynamic Website Blocker

Earn points through productive sites in order to view unproductive sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Dynamic Website Blocker",
  "description": "Earn points through productive sites in order to view unproductive sites.",
  "version": "5.0.0",
  "icons": {
    "128": "images/green_shield.png"
  },
  "action": {
    "default_icon": {
      "128": "images/green_shield.png"
    },
    "default_popup": "src/ui/popup.html"
  },
  "options_ui": {
    "page": "src/ui/settings.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "alarms",
    "webRequest",
    "idle"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "src/background.js"
  }
}