JSON[B] Viewer

JSON[B] Viewer

JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "JSON[B] Viewer",
  "version": "2.1.0",
  "manifest_version": 2,
  "author": "JSON[B] <[email protected]>",
  "description": "JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.",
  "homepage_url": "https://www.jsonb.online",
  "minimum_chrome_version": "21",
  "icons": {
    "16": "assets/icons/16.png",
    "32": "assets/icons/32.png",
    "128": "assets/icons/128.png"
  },
  "web_accessible_resources": [],
  "offline_enabled": true,
  "omnibox": {
    "keyword": "jsonb"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/js/viewer.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "assets/js/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "*://*/*",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'; frame-src 'self' https://www.jsonb.online",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}