Examine source code of Toggle LeetCode Syntax Highlighting

Inspect and view changes in Toggle LeetCode Syntax Highlighting 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": "Toggle LeetCode Syntax Highlighting",
  "description": "Practice writing code on LeetCode without the help of syntax highlighting.",
  "version": "1.0.6",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://leetcode.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://leetcode.com/problems/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{97ab9359-2cca-47d6-a5c6-ab28824cd681}"
    }
  }
}