grpc-web-devtools

grpc-web-devtools

Chrome extension for gRPC-Web to inspect requests and responses in human readable format

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "grpc-web-devtools",
  "version": "1.0.2",
  "description": "Chrome extension for gRPC-Web to inspect requests and responses in human readable format",
  "manifest_version": 3,
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "devtools_page": "devtools/devtools.html",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "devtools/devtools.html",
        "devtools/panel.html",
        "injected.js"
      ],
      "use_dynamic_url": false
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "assets/icon.png",
    "32": "assets/icon.png",
    "48": "assets/icon.png",
    "128": "assets/icon.png"
  }
}