NBA Data Retriever

NBA Data Retriever

This extension allows you to download CSVs of the data on stats(dot)nba(dot)com

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 Data Retriever",
  "description": "This extension allows you to download CSVs of the data on stats(dot)nba(dot)com",
  "version": "0.0.10",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Open the popup"
  },
  "icons": {
    "16": "basketball.png",
    "48": "basketball.png",
    "128": "basketball.png"
  },
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
  "permissions": [
    "contextMenus",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "*://stats.nba.com/",
    "*://stats.wnba.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "*.html"
  ]
}