Caro Bro

Caro Bro

Caro Bro, 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": "Caro Bro",
  "version": "4.0",
  "manifest_version": 2,
  "description": "Caro Bro, 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",
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "Caro Bro",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "screen.css"
      ]
    }
  ]
}