ESPN NHL Fantasy Team Auto Setup

ESPN NHL Fantasy Team Auto Setup

Automatically add active players to the current roster in an ESPN NHL fantasy league.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ESPN NHL Fantasy Team Auto Setup",
  "description": "Automatically add active players to the current roster in an ESPN NHL fantasy league.",
  "version": "4.0.0",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "*://fantasy.espn.com/hockey/team*"
  ],
  "icons": {
    "32": "assets/icon-32.png",
    "64": "assets/icon-64.png",
    "128": "assets/icon-128.png"
  },
  "action": {
    "default_title": "ESPN NHL Fantasy Team Auto Setup",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.fantasy.espn.com/hockey/team*"
      ],
      "js": [
        "data-nhl.js",
        "data.js",
        "autosetup.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "settings.html"
  }
}