Enhanced FPL - FPL on steroids

Enhanced FPL - FPL on steroids

Enhanced FPL improves the Fantasy Premier League site so you can more easily win your leagues and become a better FPL manager

Additional files are visible only to premium users

manifest.json


{
  "author": "Amos Bastian",
  "homepage_url": "https://enhancedfpl.com",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.5",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": {
      "16": "assets/16.png",
      "32": "assets/32.png",
      "48": "assets/48.png",
      "96": "assets/96.png",
      "128": "assets/128.png",
      "256": "assets/256.png"
    },
    "default_title": "Enhanced FPL",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "assets/16.png",
    "32": "assets/32.png",
    "48": "assets/48.png",
    "96": "assets/96.png",
    "128": "assets/128.png",
    "256": "assets/256.png"
  },
  "permissions": [
    "scripting",
    "storage",
    "https://cjxqjlbuoepquckqxkmu.supabase.co/*"
  ],
  "background": {
    "scripts": [
      "/static/js/service-worker.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.fantasy.premierleague.com/*"
      ],
      "js": [
        "./static/js/injection.js",
        "./static/js/theme.js",
        "./static/js/content.js"
      ],
      "css": [
        "./static/css/styles.min.css"
      ],
      "exclude_matches": [
        "https://*.fantasy.premierleague.com/api/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "index.html",
    "assets/32.png"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{0f59197d-047e-433c-8076-1863560f5dfb}"
    }
  }
}