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
Eメール [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:\/\/*\/*"
            ]
        }
    ]
}