webgpu-devtools
WebGPU devtools for debugging WebGPU applications
Hvad er webgpu-devtools?
webgpu-devtools er en Chrome-udvidelse udviklet af hogehoge.gachapin, og dens hovedfunktion er "WebGPU devtools for debugging WebGPU applications".
Udvidelsesskærmbilleder
Download webgpu-devtools-udvidelses-CRX-fil
Download webgpu-devtools-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ckabpgjkjmbkfmichbbgcgbelkbbpopi |
| Officiel URL | https://chromewebstore.google.com/detail/webgpu-devtools/ckabpgjkjmbkfmichbbgcgbelkbbpopi |
| Beskrivelse | WebGPU devtools for debugging WebGPU applications |
| Filstørrelse | 160 KB |
| Antal Installationer | 646 |
| Nuværende Version | 0.0.1 |
| Senest Opdateret | 2023-05-02 |
| Udgivelsesdato | 2023-05-01 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | hogehoge.gachapin |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/takahirox/webgpu-devtools |
| Hjælpeside-URL | https://github.com/takahirox/webgpu-devtools |
| Understøttede Sprog | 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:\/\/*\/*"
]
}
]
} | |