JSON Formatter for Developer

JSON Formatter for Developer

Auto-formats JSON when you load it in a browser tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "JSON Formatter for Developer",
  "version": "3.8.19.713",
  "manifest_version": 3,
  "description": "Auto-formats JSON when you load it in a browser tab.",
  "minimum_chrome_version": "88",
  "icons": {
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "cookies",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}