Examine source code of Leetcode Difficulty Hider

Inspect and view changes in Leetcode Difficulty Hider 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": "Leetcode Difficulty Hider",
  "version": "1.2",
  "description": "Hides LeetCode problem difficulty.",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "*://leetcode.com/problems/*",
        "*://leetcode.com/problemset/*",
        "*://leetcode.com/problem-list/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_end"
    }
  ]
}