JSON Viewer

JSON Viewer

Просмотр JSON файлов прямо в браузере

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "JSON Viewer",
  "version": "1.0",
  "description": "Просмотр JSON файлов прямо в браузере",
  "author": "NickProgramm",
  "icons": {
    "32": "icon.jpeg",
    "48": "icon.jpeg",
    "64": "icon.jpeg",
    "128": "icon.jpeg",
    "256": "icon.jpeg"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "applications": {
    "gecko": {
      "id": "@jsonviewernickprogramm"
    }
  },
  "web_accessible_resources": [
    "viewer.css",
    "viewer.js"
  ]
}