Drinking Water Notification

Drinking Water Notification

Browser extension that notify you to drink water every hour

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Drinking Water Notification",
  "version": "1.2.2",
  "manifest_version": 2,
  "description": "Browser extension that notify you to drink water every hour",
  "icons": {
    "16": "icons/glass16x16.png",
    "32": "icons/glass32x32.png",
    "48": "icons/glass48x48.png",
    "64": "icons/glass64x64.png",
    "128": "icons/glass128x128.png"
  },
  "browser_action": {
    "default_popup": "src/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/popup.js"
      ],
      "css": [
        "public/css/popup.css"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "notifications"
  ],
  "web_accessible_resources": [
    "public/css/popup.css",
    "dist/popup.js"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}