gRPC-Gateway Developer Tools

gRPC-Gateway Developer Tools

gRPC-Gateway Developer Tools for debugging applications' network requests to a gRPC-Gateway backend

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "gRPC-Gateway Developer Tools",
  "version": "1.2.1",
  "manifest_version": 3,
  "description": "gRPC-Gateway Developer Tools for debugging applications' network requests to a gRPC-Gateway backend",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "grpc-request-interceptor.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "content_security_policy": {},
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": []
}