JSON Beauty Formatter

JSON Beauty Formatter

JSON Formatter is an extension for printing JSON nicely when you visit it 'directly' in a tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "JSON Formatter",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "JSON Formatter is an extension for printing JSON nicely when you visit it 'directly' in a tab.",
  "homepage_url": "https://github.com/callumlocke/json-formatter",
  "icons": {
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "manifest_version": 2,
  "minimum_edge_version": "33.14281.1000.0",
  "name": "JSON Beauty Formatter",
  "permissions": [
    "*://*/*",
    "tabs",
    "cookies",
    "<all_urls>"
  ],
  "version": "1.0.0",
  "-ms-preload": {
    "backgroundScript": "backgroundScriptsAPIBridge.js",
    "contentScript": "contentScriptsAPIBridge.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}