Habit Reminder

Habit Reminder

To help remind you of habits/tasks such as drinking water or stretching.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Habit Reminder",
  "version": "1.0.3",
  "description": "To help remind you of habits/tasks such as drinking water or stretching.",
  "short_name": "Habit",
  "permissions": [
    "notifications",
    "storage"
  ],
  "browser_action": {
    "default_title": "Habit Reminder",
    "default_popup": "popup.html",
    "default_icon": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "options_page": "options.html"
}