Examine source code of GeeksforGeeks Code Formatter

Inspect and view changes in GeeksforGeeks Code Formatter 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
{
  "name": "GeeksforGeeks Code Formatter",
  "version": "1.0",
  "manifest_version": 3,
  "description": "Enhance code readability with code formatting on GeeksforGeeks Practise Platform.",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "insertScript.js"
      ],
      "matches": [
        "https://practice.geeksforgeeks.org/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentScript.js",
        "cppParser.js",
        "javaParser.js"
      ],
      "matches": [
        "https://practice.geeksforgeeks.org/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}