webgpu-devtools

WebGPU devtools for debugging WebGPU applications

Co je webgpu-devtools?

webgpu-devtools je rozšíření Chrome vyvinuté hogehoge.gachapin, a jeho hlavní funkcí je „WebGPU devtools for debugging WebGPU applications“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření webgpu-devtools

Stáhněte si soubory rozšíření webgpu-devtools ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název webgpu-devtools webgpu-devtools
ID ckabpgjkjmbkfmichbbgcgbelkbbpopi
Oficiální URL https://chromewebstore.google.com/detail/webgpu-devtools/ckabpgjkjmbkfmichbbgcgbelkbbpopi
Popis WebGPU devtools for debugging WebGPU applications
Velikost souboru 160 KB
Počet instalací 646
Aktuální Verze 0.0.1
Poslední Aktualizace 2023-05-02
Datum Vydání 2023-05-01
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář hogehoge.gachapin
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/takahirox/webgpu-devtools
URL Stránky Nápovědy https://github.com/takahirox/webgpu-devtools
Podporované Jazyky 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:\/\/*\/*"
            ]
        }
    ]
}