Examine source code of Leegues

Inspect and view changes in Leegues 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": "Leegues",
  "version": "1.3.2",
  "description": "Leegues Chrome Extension - Enter as Puzzlers, Emerge as Champions",
  "permissions": [
    "alarms",
    "tabs"
  ],
  "host_permissions": [
    "http://www.nytimes.com/*",
    "https://www.nytimes.com/*"
  ],
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "icons": {
    "16": "favicon-16x16.png",
    "48": "android-chrome-192x192.png",
    "128": "android-chrome-192x192.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.nytimes.com/puzzles/leaderboards",
        "https://www.nytimes.com/puzzles/leaderboards"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "css": [
        "assets/css/contentStyle17020936354.chunk.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "favicon-16x16.png",
        "android-chrome-192x192.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}