FPL Away Kits

FPL Away Kits

A tool to access other shirts on FPL - if a player is playing away, they play in their away shirt!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FPL Away Kits",
  "version": "1.0.4",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://fantasy.premierleague.com/*"
      ],
      "js": [
        "Content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "description": "A tool to access other shirts on FPL - if a player is playing away, they play in their away shirt!"
}