JSON Formatter for Edge

JSON Formatter for Edge

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Makes JSON easy to read. Open source.",
  "homepage_url": "https://github.com/callumlocke/json-formatter",
  "icons": {
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "21",
  "name": "JSON Formatter",
  "permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "version": "0.6.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}