DraftNight Draft Board

DraftNight Draft Board

DraftNight.com - this extension creates a live draft board for your fantasy football league.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "DraftNight Draft Board",
  "description": "DraftNight.com - this extension creates a live draft board for your fantasy football league.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "web_accessible_resources": [
    "/launch.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://fantasy.espn.com/football/*"
      ],
      "js": [
        "launch.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "https://fantasy.espn.com/football/*"
  ]
}