Take a Break

Take a Break

Take a Break is a Chrome extension that monitors and reminds you to take breaks periodically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Take a Break",
  "version": "1.1.1",
  "action": {
    "default_icon": "assets/images/logo.png",
    "default_popup": "dist/popup.html",
    "default_title": "Take a Break"
  },
  "icons": {
    "16": "assets/images/icon16.png",
    "32": "assets/images/icon32.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications",
    "background",
    "scripting"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "description": "Take a Break is a Chrome extension that monitors and reminds you to take breaks periodically.",
  "background": {
    "service_worker": "dist/background.js"
  }
}