JsonDiscovery

JsonDiscovery

Browser extension that changes the way you're viewing JSON

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.14.0",
  "name": "JsonDiscovery",
  "short_name": "JsonDiscovery",
  "description": "Browser extension that changes the way you're viewing JSON",
  "author": "exdis",
  "manifest_version": 2,
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "init.js"
      ],
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "discovery.css",
    "discovery.js",
    "discovery-esm.js",
    "preloader.css",
    "icons/*",
    "assets/*"
  ],
  "offline_enabled": true
}