webgpu-devtools
WebGPU devtools for debugging WebGPU applications
什麼是webgpu-devtools?
webgpu-devtools是由hogehoge.gachapin開發的Chrome擴展程式,該擴展的主要功能是“WebGPU devtools for debugging WebGPU applications”。
擴展截圖
下載webgpu-devtools擴展crx文件
下載webgpu-devtools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | ckabpgjkjmbkfmichbbgcgbelkbbpopi |
| 官方網址 | 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:\/\/*\/*"
]
}
]
} | |