Fantasy Hockey Lines

Fantasy Hockey Lines

Displays the lineup position of a Yahoo! Fantasy player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Fantasy Hockey Lines",
  "description": "Displays the lineup position of a Yahoo! Fantasy player.",
  "version": "1.9",
  "author": "Aman Kang",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://hockey.fantasysports.yahoo.com/*",
        "https://www.dailyfaceoff.com/teams/*"
      ],
      "js": [
        "scripts.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "48.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "https://hockey.fantasysports.yahoo.com/*",
    "https://www.dailyfaceoff.com/teams/*"
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{e1a7d0ed-11e9-458d-889e-df72cffde47c}"
    }
  }
}