webgpu-devtools
WebGPU devtools for debugging WebGPU applications
Cos'è webgpu-devtools?
webgpu-devtools è un'estensione di Chrome sviluppata da hogehoge.gachapin, e la sua funzione principale è "WebGPU devtools for debugging WebGPU applications".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione webgpu-devtools
Scarica i file di estensione webgpu-devtools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | ckabpgjkjmbkfmichbbgcgbelkbbpopi |
| URL Ufficiale | https://chromewebstore.google.com/detail/webgpu-devtools/ckabpgjkjmbkfmichbbgcgbelkbbpopi |
| Descrizione | WebGPU devtools for debugging WebGPU applications |
| Dimensione del File | 160 KB |
| Conteggio Installazioni | 646 |
| Versione Corrente | 0.0.1 |
| Ultimo Aggiornamento | 2023-05-02 |
| Data di Pubblicazione | 2023-05-01 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | hogehoge.gachapin |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/takahirox/webgpu-devtools |
| URL della Pagina di Aiuto | https://github.com/takahirox/webgpu-devtools |
| Lingue Supportate | 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:\/\/*\/*"
]
}
]
} | |