NBA Fantasy

NBA Fantasy

To have easy access to fantasy player data

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "NBA Fantasy",
  "description": "To have easy access to fantasy player data",
  "version": "0.2",
  "content_security_policy": "script-src 'self' 'sha256-WOdSzz11/3cpqOdrm89LBL2UPwEU9EhbDtMy2OciEhs='",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "NBA Fantasy",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/nba-logo16.png",
    "48": "icons/nba-logo48.png",
    "128": "icons/nba-logo128.png"
  },
  "permissions": [
    "https://*/*",
    "http://*/*",
    "tabs",
    "contextMenus",
    "storage",
    "http://www.basketball-reference.com/players/*",
    "http://fantasysports.yahooapis.com/fantasy/v2/*",
    "*://*/*"
  ]
}