webgpu-devtools
WebGPU devtools for debugging WebGPU applications
webgpu-devtools क्या है?
webgpu-devtools hogehoge.gachapin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "WebGPU devtools for debugging WebGPU applications"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में webgpu-devtools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | webgpu-devtools |
ID | ckabpgjkjmbkfmichbbgcgbelkbbpopi |
आधिकारिक URL | https://chromewebstore.google.com/detail/webgpu-devtools/ckabpgjkjmbkfmichbbgcgbelkbbpopi |
विवरण | WebGPU devtools for debugging WebGPU applications |
फ़ाइल का आकार | 160 KB |
स्थापना संख्या | 646 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2023-05-02 |
प्रकाशन तिथि | 2023-05-01 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | hogehoge.gachapin |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/takahirox/webgpu-devtools |
सहायता पृष्ठ URL | https://github.com/takahirox/webgpu-devtools |
समर्थित भाषाएँ | 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:\/\/*\/*" ] } ] } |