JSON Viewer

JSON Viewer

Validates and makes JSON documents easy to read. Open source.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "JSON Viewer",
  "short_name": "JSONViewer",
  "version": "1.0.3",
  "description": "Validates and makes JSON documents easy to read. Open source.",
  "homepage_url": "https://github.com/teocci/JSONView-for-Chrome",
  "minimum_chrome_version": "88",
  "icons": {
    "16": "assets/images/jsonview16.png",
    "48": "assets/images/jsonview48.png",
    "128": "assets/images/jsonview128.png"
  },
  "options_page": "assets/options.html",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/options.html",
        "assets/source.html",
        "assets/css-editor.html",
        "assets/css/jsonview.css",
        "assets/css/jsonview-core.css",
        "assets/css/content-error.css",
        "assets/images/options.png",
        "assets/images/close.png",
        "assets/images/error.gif"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "clipboardWrite",
    "scripting",
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ]
}