JSON live editor

JSON live editor

Live editor for JSON documents

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JSON live editor",
  "version": "1.2.1",
  "manifest_version": 2,
  "description": "Live editor for JSON documents",
  "minimum_chrome_version": "21",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js",
        "js/jquery.js",
        "js/codemirror/codemirror.js",
        "js/codemirror/search.js",
        "js/codemirror/searchcursor.js",
        "js/codemirror/dialog.js",
        "js/codemirror/show-hint.js",
        "js/codemirror/xml-hint.js",
        "js/codemirror/html-hint.js",
        "js/codemirror/javascript-hint.js",
        "js/codemirror/xml.js",
        "js/codemirror/javascript.js",
        "js/codemirror/css.js",
        "js/codemirror/htmlmixed.js",
        "js/compression/rawinflate.js",
        "js/compression/rawdeflate.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "template/index.html"
  ],
  "permissions": [
    "*://*/*",
    "<all_urls>"
  ]
}