Seven JSON Viewer

Seven JSON Viewer

Minimal JSON Viewer with JSON Path

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Seven JSON Viewer",
  "description": "Minimal JSON Viewer with JSON Path",
  "short_name": "JSON Viewer",
  "version": "2.1",
  "offline_enabled": true,
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "app.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "content_security_policy": "sandbox allow-scripts; script-src 'self'; object-src 'none';",
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "web_accessible_resources": [
    "styles.css",
    "app.js"
  ],
  "icons": {
    "16": "assets/icon-16.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png",
    "512": "assets/icon-512.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}