JSON Format Tool

JSON Format Tool

A simple Chrome extension to format JSON data

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JSON Format Tool",
  "version": "1.0",
  "description": "A simple Chrome extension to format JSON data",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "default.min.css"
      ],
      "js": [
        "highlight.min.js",
        "content.js"
      ],
      "type": "module"
    }
  ]
}