Gettie Fittie

Gettie Fittie

Gettie Fittie, your Health pal, will remind you to take care of your health.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gettie Fittie",
  "version": "1.3",
  "manifest_version": 2,
  "description": "Gettie Fittie, your Health pal, will remind you to take care of your health.",
  "icons": {
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "permissions": [
    "activeTab",
    "alarms",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/48.png",
    "default_title": "Gettie Fittie",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "screen.css"
      ]
    }
  ]
}