WebGPU Inspector

WebGPU Inspector

WebGPU Inspector Debugging Tools

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WebGPU Inspector",
  "short_name": "webgpu_inspector",
  "version": "0.5.0",
  "manifest_version": 3,
  "description": "WebGPU Inspector Debugging Tools",
  "author": "Brendan Duncan",
  "minimum_chrome_version": "116",
  "icons": {
    "19": "res/webgpu_inspector_on-19.png",
    "38": "res/webgpu_inspector_on-38.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "devtools_page": "webgpu_inspector_devtools.html",
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "js": [
        "webgpu_inspector_loader.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "world": "MAIN"
    },
    {
      "js": [
        "webgpu_recorder_loader.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "world": "MAIN"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "webgpu_recorder_loader.js",
        "webgpu_recorder.js",
        "webgpu_inspector_loader.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ]
    }
  ]
}