FPL Mini-League Stats Calculator

FPL Mini-League Stats Calculator

Calculates insightful statistics for your Fantasy Premier League mini-leagues with the click of a mouse!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FPL Mini-League Stats Calculator",
  "short_name": "FPL Stats",
  "version": "3.0.2",
  "description": "Calculates insightful statistics for your Fantasy Premier League mini-leagues with the click of a mouse!",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "manifest_version": 2,
  "page_action": {
    "default_icon": "images/BarChart.png",
    "default_title": "Get league stats!"
  },
  "permissions": [
    "tabs",
    "http://fantasy.premierleague.com/*",
    "https://fantasy.premierleague.com/*"
  ],
  "icons": {
    "128": "images/BarChart.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/jquery-2.1.4.min.js",
        "scripts/contentTest.js"
      ],
      "css": [
        "myStyles.css"
      ],
      "matches": [
        "http://fantasy.premierleague.com/entry/*",
        "https://fantasy.premierleague.com/entry/*"
      ]
    }
  ]
}