Healthy Browsing

Healthy Browsing

Reminders to drink water, blink, correct your posture and stretch for a healthier browsing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Healthy Browsing",
  "description": "Reminders to drink water, blink, correct your posture and stretch for a healthier browsing.",
  "version": "1.1",
  "minimum_chrome_version": "23",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "index.html",
    "default_title": "Healthy Browsing"
  },
  "permissions": [
    "notifications",
    "storage"
  ],
  "background": {
    "scripts": [
      "global.js",
      "background.js"
    ]
  }
}