Project Make It Happen

Project Make It Happen

PMIH Event Calendar, Push Notifications, and Daily Motivation Center

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Project Make It Happen",
  "version": "1.0.3",
  "description": "PMIH Event Calendar, Push Notifications, and Daily Motivation Center ",
  "permissions": [
    "http://notify.thesfm.com/*",
    "notifications",
    "storage"
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ]
  },
  "browser_action": {
    "name": "Project Make It Happen",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "icon.png",
    "128": "icon.png"
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "popup.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ]
}