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.5",
  "version_name": "Version 2.0.5 Beta",
  "manifest_version": 3,
  "description": "Formats JSON automatically! Open Source, Available with 60+ Themes, Syntax Highlighting, automatically linkifies links and more.",
  "author": "Arnav",
  "homepage_url": "https://github.com/arnav-kr/json-formatter",
  "minimum_chrome_version": "88",
  "offline_enabled": true,
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {
    "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"
    }
  ],
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "js/*",
        "css/*",
        "*.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}