webgpu-devtools
WebGPU devtools for debugging WebGPU applications
Qu'est-ce que webgpu-devtools ?
webgpu-devtools est une extension Chrome développée par hogehoge.gachapin, et sa fonction principale est "WebGPU devtools for debugging WebGPU applications".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension webgpu-devtools
Téléchargez les fichiers d'extension webgpu-devtools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | webgpu-devtools |
ID | ckabpgjkjmbkfmichbbgcgbelkbbpopi |
URL Officiel | https://chromewebstore.google.com/detail/webgpu-devtools/ckabpgjkjmbkfmichbbgcgbelkbbpopi |
Description | WebGPU devtools for debugging WebGPU applications |
Taille du Fichier | 160 KB |
Nombre d'Installations | 646 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2023-05-02 |
Date de Publication | 2023-05-01 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | hogehoge.gachapin |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/takahirox/webgpu-devtools |
URL de la Page d'Aide | https://github.com/takahirox/webgpu-devtools |
Langues Prises en Charge | 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:\/\/*\/*" ] } ] } |