Examine source code of Kick Game

Inspect and view changes in Kick Game 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",
  "manifest_version": 3,
  "name": "Kick Game",
  "description": "A simple 2D sprite-based game built with Three.js",
  "version": "1.0",
  "action": {
    "default_popup": "view/inventory.html",
    "default_icon": {
      "16": "assets/icon16x16.png",
      "48": "assets/icon48x48.png",
      "128": "assets/icon128x128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://kick.com/*"
      ],
      "js": [
        "content/content.1735393225354.bundle.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background/background.1735393225354.bundle.js"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "https://c.hbrcy.co/images/*",
        "assets/*"
      ],
      "matches": [
        "https://kick.com/*"
      ]
    }
  ],
  "icons": {
    "16": "assets/icon16x16.png",
    "48": "assets/icon48x48.png",
    "128": "assets/icon128x128.png"
  }
}