Yahoo Fantasy Basketball addon

Yahoo Fantasy Basketball addon

An extension for yahoo fantasy basketball, showing the total games each player is playing this week.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Yahoo Fantasy Basketball Extender",
  "short_name": "yahoo fbb extender",
  "version": "1.8.0",
  "description": "Enhances yahoo fantasy basketball!",
  "icons": {
    "96": "basketball.png",
    "128": "basketball_128.png"
  },
  "homepage_url": "https://github.com/sahilda/yahoo-fantasybb-extender",
  "permissions": [
    "activeTab",
    "https://basketball.fantasysports.yahoo.com/nba/*/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://basketball.fantasysports.yahoo.com/nba/*/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ]
}