webgpu-devtools

WebGPU devtools for debugging WebGPU applications

webgpu-devtools là gì?

webgpu-devtools là một tiện ích mở rộng Chrome được phát triển bởi hogehoge.gachapin, và tính năng chính của nó là "WebGPU devtools for debugging WebGPU applications".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng webgpu-devtools

Tải xuống các tệp mở rộng webgpu-devtools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên webgpu-devtools webgpu-devtools
ID ckabpgjkjmbkfmichbbgcgbelkbbpopi
URL Chính Thức https://chromewebstore.google.com/detail/webgpu-devtools/ckabpgjkjmbkfmichbbgcgbelkbbpopi
Mô tả WebGPU devtools for debugging WebGPU applications
Kích Thước Tệp 160 KB
Số Lần Cài Đặt 646
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2023-05-02
Ngày Phát Hành 2023-05-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển hogehoge.gachapin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/takahirox/webgpu-devtools
URL Trang Trợ Giúp https://github.com/takahirox/webgpu-devtools
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}