JSON-handle

JSON-handle

It's a browser and editor for JSON document.You can get a beautiful view. And transcoding Unicode Base64 URL with decode & encode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "JSON-handle",
  "version": "0.7.2",
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "description": "It's a browser and editor for JSON document.You can get a beautiful view. And transcoding Unicode Base64 URL with decode & encode.",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file://*",
        "file:///*"
      ],
      "js": [
        "JSON-handle/js/json5.js",
        "common.js",
        "content_scripts.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "action": {
    "default_title": "JSON-handle",
    "default_icon": "logo16.png"
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "JSON-handle/JSON-handle.html",
        "options.html",
        "faq.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "offline_enabled": true,
  "permissions": [
    "contextMenus",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "default_locale": "en",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}