NBA game alert

NBA game alert

Chrome extension for NBA fans to be notified of their favorite teams and scores!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NBA game alert",
  "version": "4.0.0",
  "description": "Chrome extension for NBA fans to be notified of their favorite teams and scores!",
  "permissions": [
    "declarativeContent",
    "storage",
    "http://data.nba.net/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon.png",
      "32": "images/icon.png",
      "48": "images/icon.png",
      "128": "images/icon.png"
    }
  },
  "icons": {
    "16": "images/icon.png",
    "32": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "options_page": "options.html",
  "manifest_version": 2
}