FF Winner

FF Winner

Computes a score distribution to determine a likely winner in ESPN fantasy football.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FF Winner",
  "description": "Computes a score distribution to determine a likely winner in ESPN fantasy football.",
  "version": "1.2.2",
  "permissions": [],
  "icons": {
    "16": "favicon.png",
    "48": "favicon.png",
    "128": "favicon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://fantasy.espn.com/football/boxscore*"
      ],
      "js": [
        "content_script.js",
        "typescriptServices.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "scripts/*",
    "manifest.json"
  ],
  "browser_action": {
    "default_icon": "favicon.png"
  },
  "manifest_version": 2
}