Praxis Eye Health

Praxis Eye Health

Reminders to help improve your health when using a computer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Praxis Eye Health",
  "manifest_version": 2,
  "version": "1.2",
  "description": "Reminders to help improve your health when using a computer",
  "icons": {
    "16": "images/logo_16.png",
    "48": "images/logo_48.png",
    "128": "images/logo_128.png"
  },
  "permissions": [
    "notifications",
    "background"
  ],
  "browser_action": {
    "default_icon": "images/logo_16.png",
    "default_popup": "popup.html",
    "default_title": "Praxis Eye Health"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-1.11.1.min.js",
        "popup.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "jquery-1.11.1.min.js",
      "background.js"
    ],
    "persistent": true
  }
}