Examine source code of Game Changer

Inspect and view changes in Game Changer source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Game Changer",
  "description": "Create, Save and Revisit versions of your Fantasy Team before the season starts, and have key insights into your team!",
  "version": "3.0.1",
  "manifest_version": 3,
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "content_scripts": [
    {
      "js": [
        "src/index.js"
      ],
      "matches": [
        "https://fantasy.afl.com.au/classic/team"
      ],
      "run_at": "document_end",
      "css": [
        "app-extension.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "*://fantasy.afl.com.au/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icon/16.png",
      "32": "icon/32.png"
    },
    "default_title": "Click to add Game Changer to Page"
  },
  "background": {
    "service_worker": "src/background.js"
  }
}