Fantasy Basketball Helper

Fantasy Basketball Helper

This extension helps the user to start active players for next 7 days

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fantasy Basketball Helper",
  "description": "This extension helps the user to start active players for next 7 days",
  "version": "1.2",
  "browser_action": {
    "default_icon": "icons/19.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "*://basketball.fantasysports.yahoo.com/nba/*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://basketball.fantasysports.yahoo.com/nba/*/*"
      ],
      "js": [
        "js/jquery-3.2.1.min.js",
        "js/startActivePlayers.js"
      ]
    }
  ]
}