jsonv

jsonv

JSON viewer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "jsonv",
  "description": "JSON viewer",
  "offline_enabled": true,
  "icons": {
    "16": "jsonv16.png",
    "48": "jsonv48.png",
    "128": "jsonv128.png"
  },
  "version": "0.12",
  "permissions": [
    "http://*/",
    "https://*/",
    "ftp://*/"
  ],
  "web_accessible_resources": [
    "jsonv.css"
  ],
  "background": {
    "scripts": [
      "jsonv.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "jsonv.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file:///*"
      ],
      "run_at": "document_end"
    }
  ]
}