JSON Formatter

JSON Formatter

Formats JSON automatically! Open Source, Available with 60+ Themes, Syntax Highlighting, automatically linkifies links and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "JSON Formatter",
  "short_name": "JSON Formatter",
  "version": "2.0.3.0",
  "manifest_version": 2,
  "description": "Formats JSON automatically! Open Source, Available with Dark and Light mode, Syntax Highlighting, and automatically linkifies links.",
  "author": "json-formatter.js.org",
  "homepage_url": "https://github.com/arnav-kr/json-formatter",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "browser_action": {
    "default_area": "navbar",
    "default_icon": {
      "16": "images/icons/icon_round_16.png",
      "32": "images/icons/icon_round_32.png",
      "48": "images/icons/icon_round_48.png",
      "64": "images/icons/icon_round_64.png",
      "72": "images/icons/icon_round_72.png",
      "128": "images/icons/icon_round_128.png",
      "256": "images/icons/icon_round_256.png",
      "384": "images/icons/icon_round_384.png",
      "512": "images/icons/icon_round_512.png",
      "1024": "images/icons/icon_round_1024.png"
    },
    "default_title": "JSON Formatter - Edit Preferences",
    "default_popup": "options.html"
  },
  "icons": {
    "16": "images/icons/icon_round_16.png",
    "32": "images/icons/icon_round_32.png",
    "48": "images/icons/icon_round_48.png",
    "64": "images/icons/icon_round_64.png",
    "72": "images/icons/icon_round_72.png",
    "128": "images/icons/icon_round_128.png",
    "256": "images/icons/icon_round_256.png",
    "384": "images/icons/icon_round_384.png",
    "512": "images/icons/icon_round_512.png",
    "1024": "images/icons/icon_round_1024.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/globals.js",
        "js/utils.js",
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "*://*/*",
    "<all_urls>",
    "storage",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    "images/*",
    "js/*",
    "css/*",
    "*.html"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{db8ff575-504f-4f3d-a910-07702998d21d}"
    }
  }
}