webgpu-devtools
WebGPU devtools for debugging WebGPU applications
Wat is webgpu-devtools?
webgpu-devtools is een Chrome-extensie ontwikkeld door hogehoge.gachapin, en de belangrijkste functie is "WebGPU devtools for debugging WebGPU applications".
Extensie Screenshots
Download het CRX-bestand van de extensie webgpu-devtools
Download webgpu-devtools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | ckabpgjkjmbkfmichbbgcgbelkbbpopi |
| Officiële URL | https://chromewebstore.google.com/detail/webgpu-devtools/ckabpgjkjmbkfmichbbgcgbelkbbpopi |
| Beschrijving | WebGPU devtools for debugging WebGPU applications |
| Bestandsgrootte | 160 KB |
| Aantal Installaties | 646 |
| Huidige Versie | 0.0.1 |
| Laatst Bijgewerkt | 2023-05-02 |
| Publicatiedatum | 2023-05-01 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | hogehoge.gachapin |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/takahirox/webgpu-devtools |
| Help Pagina-URL | https://github.com/takahirox/webgpu-devtools |
| Ondersteunde Talen | 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:\/\/*\/*"
]
}
]
} | |