JSON Finder

JSON Finder

Browse JSON like you do it in Finder.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JSON Finder",
  "version": "0.1.0",
  "manifest_version": 2,
  "description": "Browse JSON like you do it in Finder.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "jquery.js",
        "underscore.js",
        "backbone.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_start"
    }
  ],
  "homepage_url": "https://github.com/rapee/jsonfinder",
  "web_accessible_resources": [
    "style.css",
    "template.html",
    "jquery.js",
    "underscore.js",
    "backbone.js"
  ]
}