Examine source code of LeetCode Contest Helper

Inspect and view changes in LeetCode Contest Helper 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": 2,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "2.3.7",
  "author": "Maozi Chen",
  "icons": {
    "128": "logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://leetcode.com/contest/*",
        "https://leetcode.com/problems/*",
        "https://leetcode.cn/contest/*",
        "https://leetcode.cn/problems/*",
        "https://leetcode-cn.com/contest/*",
        "https://leetcode-cn.com/problems/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{cf30a57a-ddbb-4f21-81f2-caad54e323ca}"
    }
  }
}