JSON Formatter

JSON Formatter

Makes JSON easy to read. Open source.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JSON Formatter",
  "version": "0.6.0.3",
  "manifest_version": 2,
  "description": "Makes JSON easy to read. Open source.",
  "homepage_url": "https://github.com/jumkey/json-formatter",
  "minimum_chrome_version": "21",
  "icons": {
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_title": "__MSG_reload__"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ]
}