json-viewer

json-viewer

Chrome extension that view json better.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "json-viewer",
  "version": "0.5.5",
  "author": "Neil Ding",
  "description": "Chrome extension that view json better.",
  "permissions": [
    "clipboardWrite",
    "http://*/",
    "contextMenus",
    "https://*/",
    "ftp://*/",
    "file:///*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file:///*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "content.css"
  ],
  "manifest_version": 2
}