Examine source code of Leetcode Contest Tracker

Inspect and view changes in Leetcode Contest Tracker 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
{
  "manifest_version": 3,
  "name": "Leetcode Contest Tracker",
  "version": "0.0.4",
  "description": "Leetcode Contest Performance Tracker",
  "icons": {
    "128": "icon1.png"
  },
  "action": {
    "default_icon": "icon1.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://leetcode.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "shubhamojha4444@gmail.com",
      "strict_min_version": "91.0"
    }
  }
}