FPL Insights

FPL Insights

A better way to get the latest statistics on all things fantasy premier league

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "web_accessible_resources": [
    "charts.html"
  ],
  "name": "FPL Insights",
  "description": "A better way to get the latest statistics on all things fantasy premier league",
  "version": "3.2",
  "browser_action": {
    "default_popup": "popup.html",
    "css": [
      "popup.css"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://fantasy.premierleague.com/*"
      ],
      "css": [
        "slick.css",
        "apexcharts.css",
        "charts.css",
        "all.css"
      ],
      "js": [
        "apexcharts.js",
        "all.js",
        "jquery-3.4.1.min.js",
        "content.js",
        "slick.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}