webgpu-devtools
WebGPU devtools for debugging WebGPU applications
Vad är webgpu-devtools?
webgpu-devtools är en Chrome-tillägg utvecklad av hogehoge.gachapin, och dess huvudfunktion är "WebGPU devtools for debugging WebGPU applications".
Tilläggsskärmbilder
Ladda ner webgpu-devtools-förlängningens CRX-fil
Ladda ner webgpu-devtools-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | webgpu-devtools |
ID | ckabpgjkjmbkfmichbbgcgbelkbbpopi |
Officiell webbadress | https://chromewebstore.google.com/detail/webgpu-devtools/ckabpgjkjmbkfmichbbgcgbelkbbpopi |
Beskrivning | WebGPU devtools for debugging WebGPU applications |
Filstorlek | 160 KB |
Antal Installationer | 646 |
Aktuell Version | 0.0.1 |
Senast Uppdaterad | 2023-05-02 |
Publiceringsdatum | 2023-05-01 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | hogehoge.gachapin |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/takahirox/webgpu-devtools |
Hjälpsida URL | https://github.com/takahirox/webgpu-devtools |
Stödda Språk | 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:\/\/*\/*" ] } ] } |