JSON-As-Table Viewer

JSON-As-Table Viewer

*** View JSON response from a URL as HTML table ***

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "JSON-As-Table Viewer",
  "version": "1.0.5",
  "description": "*** View JSON response from a URL as HTML table ***",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "css": [
        "libs/datatables.css",
        "style.css"
      ],
      "js": [
        "libs/jQuery-3.3.1/jquery-3.3.1.js",
        "libs/datatables.js",
        "src/content.js",
        "main.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    "libs/DataTables-1.10.21/images/*",
    "images/*"
  ]
}