JSONVue

JSONVue

Validate and view JSON documents

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JSONVue",
  "icons": {
    "16": "resources/jsonvue16.png",
    "48": "resources/jsonvue48.png",
    "128": "resources/jsonvue128.png"
  },
  "version": "0.2.3",
  "description": "Validate and view JSON documents",
  "options_ui": {
    "browser_style": true,
    "page": "options.html",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file:///*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "manifest_version": 3
}