LeetSports Fantasy Hockey Tools

LeetSports Fantasy Hockey Tools

Fantasy hockey tools

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LeetSports Fantasy Hockey Tools",
  "description": "Fantasy hockey tools",
  "version": "1.0.4",
  "icons": {
    "128": "res/icon.png"
  },
  "browser_action": {
    "default_icon": "res/icon.png",
    "default_popup": "popup.html",
    "default_title": "LeetSports"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://fantasy.espn.com/hockey/*"
      ],
      "js": [
        "espn_content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://hockey.fantasysports.yahoo.com/hockey/*"
      ],
      "js": [
        "yahoo_content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.fantrax.com/fantasy/league/*"
      ],
      "js": [
        "fantrax_content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "http://leetsports-env.eba-fr7wdxc8.us-west-2.elasticbeanstalk.com/*"
  ]
}