JSON Viewer React

JSON Viewer React

JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.",
  "version": "1.0.2",
  "name": "JSON Viewer React",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "json-viewer-react-icon-16.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.bundle.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "json-viewer-react-icon-16.png",
    "48": "json-viewer-react-icon-48.png",
    "128": "json-viewer-react-icon-128.png"
  },
  "permissions": [
    "storage",
    "*://*/*",
    "<all_urls>"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}