webgpu-devtools

WebGPU devtools for debugging WebGPU applications

什么是webgpu-devtools?

webgpu-devtools是由hogehoge.gachapin开发的Chrome扩展程序,该扩展的主要功能是“WebGPU devtools for debugging WebGPU applications”。

扩展截图

screenshot

下载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.                    

扩展基本信息

名称 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:\/\/*\/*"
            ]
        }
    ]
}