Examine source code of JSONEditor2.0

Inspect and view changes in JSONEditor2.0 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": "__MSG_extName__",
  "version": "2.2",
  "description": "__MSG_extDescription__",
  "author": "Awen",
  "default_locale": "zh_CN",
  "icons": {
    "16": "img/favicon16.png",
    "48": "img/favicon48.png",
    "128": "img/favicon.png"
  },
  "action": {
    "default_icon": "img/favicon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/popup.js"
      ],
      "css": [
        "css/popup.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}