webgpu-devtools

webgpu-devtools

WebGPU devtools for debugging WebGPU applications

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "webgpu-devtools",
  "short_name": "webgpu-devtools",
  "version": "0.0.1",
  "author": "Takahiro Aoyagi",
  "description": "WebGPU devtools for debugging WebGPU applications",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "devtools_page": "devtools.html",
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "webgpu-devtools.bundle.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}