JSON Viewer

JSON Viewer

Port of Firefox's JSON Viewer

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",
  "version": "2.2.0",
  "description": "Port of Firefox's JSON Viewer",
  "offline_enabled": true,
  "homepage_url": "https://github.com/pd4d10/json-viewer",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "storage"
  ]
}