webgpu-devtools

WebGPU devtools for debugging WebGPU applications

Co to jest webgpu-devtools?

webgpu-devtools to rozszerzenie Chrome opracowane przez hogehoge.gachapin, a jego główną funkcją jest „WebGPU devtools for debugging WebGPU applications”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia webgpu-devtools

Pobierz pliki rozszerzeń webgpu-devtools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa webgpu-devtools webgpu-devtools
ID ckabpgjkjmbkfmichbbgcgbelkbbpopi
Oficjalny URL https://chromewebstore.google.com/detail/webgpu-devtools/ckabpgjkjmbkfmichbbgcgbelkbbpopi
Opis WebGPU devtools for debugging WebGPU applications
Rozmiar pliku 160 KB
Liczba instalacji 646
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2023-05-02
Data Publikacji 2023-05-01
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper hogehoge.gachapin
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/takahirox/webgpu-devtools
Adres URL Strony Pomocy https://github.com/takahirox/webgpu-devtools
Obsługiwane Języki 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:\/\/*\/*"
            ]
        }
    ]
}