gRPC Web Devtools

gRPC Web Devtools

Browser DevTools extension for debugging gRPC-web network requests.

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.17.3",
  "description": "Browser DevTools extension for debugging gRPC-web network requests.",
  "manifest_version": 3,
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "devtools_page": "devtools.html",
  "incognito": "split",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "world": "MAIN",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "inject.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "identity",
    "storage",
    "alarms"
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkcLeBXMSYBLEM9ZXPctlUnKH64aS5FRKJ10cM35LaYcor93XTu1ub/HhYSYkaFWoZZ/ysWq0D5Rv6fIkxehwpSgvVwQ7Yoml4Vg7GxroRh3KwRzhL9/EVlnc1MvlRkuSudgTaCSOI/Ac+BZdJLgljS3BoiUP9Us7HNwsAFNXO9H110Y8GJ/woByDKdFQZmggEP+6lk8cJERxkjuWADPdSCd861Dh9taJT4nrKRVm7heIZzZu2iVfAA+DPGgTQhSHaNnK5yU58cBA9d6p4Jirmb1nodBjbcPbyUQogaAv5atVIvcmXrmuCtnxnznZNe64x5NFrnpk7r8e/2xiqcLkNwIDAQAB",
  "oauth2": {
    "client_id": "404016641889-6t7r1679iu1h6ut770nl7efh6kb8sooc.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html"
  }
}