FPL Dark Mode

FPL Dark Mode

Enjoy the Fantasy Premier League site, now in dark mode! New colour options coming soon

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FPL Dark Mode",
  "version": "1.0.2",
  "manifest_version": 3,
  "description": "Enjoy the Fantasy Premier League site,  now in dark mode! New colour options coming soon",
  "content_scripts": [
    {
      "matches": [
        "*://fantasy.premierleague.com/*"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "logo.png",
      "32": "logo.png",
      "48": "logo.png",
      "128": "logo.png"
    }
  },
  "icons": {
    "128": "logo.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "pitch-darksvg.svg"
      ],
      "matches": [
        "*://fantasy.premierleague.com/*"
      ]
    }
  ]
}