Functional JSON viewer

Functional JSON viewer

Modern JSON formatter and explorer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Functional JSON viewer",
  "version": "0.0.11",
  "manifest_version": 3,
  "description": "Modern JSON formatter and explorer.",
  "homepage_url": "https://github.com/diogenesofweb/fjv",
  "minimum_chrome_version": "88",
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "style.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage",
    "contextMenus",
    "clipboardWrite"
  ],
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ]
}