Break Reminder

Break Reminder

For knowledge workers that work long hours. This extension reminds you to take regular breaks & gives you simple exercises.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Break Reminder",
  "version": "2.0",
  "description": "For knowledge workers that work long hours. This extension reminds you to take regular breaks & gives you simple exercises.",
  "permissions": [
    "notifications",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/stopwatch16.png",
      "64": "images/stopwatch64.png",
      "128": "images/stopwatch128.png"
    }
  },
  "icons": {
    "16": "images/stopwatch16.png",
    "64": "images/stopwatch64.png",
    "128": "images/stopwatch128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html"
}