Fantasy Football Hybrid Standings

Fantasy Football Hybrid Standings

Adds ability to see a hybrid standings (H2H winner and highest points) scoring system on the ESPN Standings page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fantasy Football Hybrid Standings",
  "version": "0.12.0",
  "description": "Adds ability to see a hybrid standings (H2H winner and highest points) scoring system on the ESPN Standings page.",
  "icons": {
    "128": "assets/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://games.espn.com/ffl/*"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "content_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "incognito": "not_allowed",
  "short_name": "FF Hybrid Standings"
}