Examine source code of CodeGym

Inspect and view changes in CodeGym 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": "CodeGym",
  "version": "1.0.1",
  "description": "帮助用户练习编程的Chrome插件",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/gicon.png",
      "48": "images/gicon.png",
      "128": "images/gicon.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "images/gicon.png",
    "48": "images/gicon.png",
    "128": "images/gicon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "problem-list.html",
        "problem-list.js",
        "strategy.html",
        "strategy.js",
        "styles.css",
        "all_problems.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}