JSON Tool

JSON Tool

Makes JSON readable, saves you from headaches ;)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JSON Tool",
  "version": "0.6.1",
  "manifest_version": 2,
  "description": "Makes JSON readable, saves you from headaches ;)",
  "homepage_url": "https://directbit.net/json-tool",
  "minimum_chrome_version": "21",
  "icons": {
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "*://*/*",
    "<all_urls>"
  ]
}