JSON pathfinder

JSON pathfinder

Formats websites containing JSON and allows to search them using jsonpath

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JSON pathfinder",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "",
  "homepage_url": "https://github.com/radek-novak/json-commander",
  "minimum_chrome_version": "21",
  "icons": {
    "32": "icons/icon_32.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "scripts": [
      "build/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "build/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "*://*/*",
    "<all_urls>",
    "storage"
  ]
}