webgpu-devtools
WebGPU devtools for debugging WebGPU applications
Was ist webgpu-devtools?
webgpu-devtools ist eine Chrome-Erweiterung, die von hogehoge.gachapin entwickelt wurde, und ihr Hauptmerkmal ist "WebGPU devtools for debugging WebGPU applications".
Erweiterungsscreenshots
webgpu-devtools-Erweiterungs-CRX-Datei herunterladen
Laden Sie webgpu-devtools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
WebGPU devtools is a web browser extension that helps debug WebGPU applications.
It captures WebGPU usage. You can check for example
- Created WebGPU objects
- WebGPU command history and callback
- Error WebGPU commands
- WGSL shader code
- Buffer, texture, and framebuffer contents
The WebGPU devtools is still in the alpha stage. I'm happy if you send any bug reports or feature requets. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ckabpgjkjmbkfmichbbgcgbelkbbpopi |
| Offizielle URL | https://chromewebstore.google.com/detail/webgpu-devtools/ckabpgjkjmbkfmichbbgcgbelkbbpopi |
| Beschreibung | WebGPU devtools for debugging WebGPU applications |
| Dateigröße | 160 KB |
| Installationsanzahl | 646 |
| Aktuelle Version | 0.0.1 |
| Letztes Update | 2023-05-02 |
| Veröffentlichungsdatum | 2023-05-01 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | hogehoge.gachapin |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/takahirox/webgpu-devtools |
| Hilfeseite URL | https://github.com/takahirox/webgpu-devtools |
| Unterstützte Sprachen | en |
| 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:\/\/*\/*"
]
}
]
} | |