Drink Water Reminder

Drink Water Reminder

Drink Water Reminder - This extension will help you to remind drink water in a periodic time interval. Stay Hydrated

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Drink Water Reminder",
  "description": "Drink Water Reminder - This extension will help you to remind drink water in a periodic time interval. Stay Hydrated",
  "version": "1.1",
  "icons": {
    "16": "/icons/16.png",
    "32": "/icons/32.png",
    "48": "/icons/48.png",
    "128": "/icons/128.png"
  },
  "browser_action": {
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "alarms",
    "notifications",
    "storage"
  ]
}