Nucleus: A Pomodoro Timer and Website Blocker

Nucleus: A Pomodoro Timer and Website Blocker

Provides a Pomodoro for focused time management and the ability to block websites to help prevent distractions while you work.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Nucleus: A Pomodoro Timer and Website Blocker",
  "description": "Provides a Pomodoro for focused time management and the ability to block websites to help prevent distractions while you work.",
  "version": "2024.01.25",
  "action": {
    "default_icon": "./ico/128clock.png",
    "default_title": "Nucleus",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "128": "./ico/128clock.png"
  },
  "permissions": [
    "declarativeNetRequest",
    "activeTab",
    "background",
    "notifications",
    "storage",
    "offscreen"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*/*.json",
        "*://*/*.pdf",
        "*://*/*.jpeg",
        "*://*/*.jpg",
        "*://*/*.png",
        "*://*/*.svg"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ]
}