webgpu-devtools

WebGPU devtools for debugging WebGPU applications

webgpu-devtoolsคืออะไร?

webgpu-devtools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hogehoge.gachapin และคุณลักษณะหลักของมันคือ "WebGPU devtools for debugging WebGPU applications"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย webgpu-devtools

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ webgpu-devtools 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:\/\/*\/*"
            ]
        }
    ]
}