Projectile - Fantasy Baseball Values

Projectile - Fantasy Baseball Values

Add in-season player values and projections to your Yahoo, ESPN, CBS, or Fantrax fantasy league website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Projectile - Fantasy Baseball Values",
  "description": "Add in-season player values and projections to your Yahoo, ESPN, CBS, or Fantrax fantasy league website",
  "version": "2.0.5",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://baseball.fantasysports.yahoo.com/*",
        "https://*.baseball.cbssports.com/*",
        "https://nfc.shgn.com/*",
        "https://fantasy.espn.com/baseball/*",
        "https://www.fantrax.com/fantasy/league/*"
      ],
      "js": [
        "priceguide.js",
        "content.js",
        "playerids.js"
      ]
    }
  ],
  "options_page": "index.html",
  "host_permissions": [
    "https://*.fangraphs.com/*"
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "/img/projectile16.png",
    "32": "/img/projectile32.png",
    "48": "/img/projectile48.png",
    "128": "/img/projectile128.png"
  }
}