Take A Break

Take A Break

Remind users regularly to take a break.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Take A Break",
  "description": "Remind users regularly to take a break.",
  "version": "0.1",
  "manifest_version": 2,
  "permissions": [
    "alarms",
    "notifications",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Take A Break",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "rest128.png"
  }
}