Examine source code of JSON格式化工具

Inspect and view changes in JSON格式化工具 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": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "homepage_url": "https://plugin.csdn.net/",
  "version": "3.0.5",
  "default_locale": "zh_CN",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon-logo-16.png",
    "48": "icons/icon-logo-48.png",
    "128": "icons/icon-logo-128.png"
  },
  "permissions": [
    "storage",
    "cookies",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [],
      "run_at": "document_start",
      "all_frames": false,
      "match_about_blank": true
    }
  ],
  "action": {
    "default_icon": "icons/icon-logo.png",
    "default_title": "CSDN-JSON格式化工具"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "packages/*",
        "svg/*",
        "images/*",
        "icons/*",
        "pages/*",
        "js/*",
        "css/jsonPages.css",
        "vendor/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.csdn.net/*"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}