webgpu-devtools

WebGPU devtools for debugging WebGPU applications

O que é webgpu-devtools?

webgpu-devtools é uma extensão do Chrome desenvolvida por hogehoge.gachapin, e sua principal característica é "WebGPU devtools for debugging WebGPU applications".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão webgpu-devtools

Baixe arquivos de extensão webgpu-devtools no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome webgpu-devtools webgpu-devtools
ID ckabpgjkjmbkfmichbbgcgbelkbbpopi
URL Oficial https://chromewebstore.google.com/detail/webgpu-devtools/ckabpgjkjmbkfmichbbgcgbelkbbpopi
Descrição WebGPU devtools for debugging WebGPU applications
Tamanho do Arquivo 160 KB
Contagem de Instalações 646
Versão Atual 0.0.1
Última Atualização 2023-05-02
Data de Publicação 2023-05-01
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor hogehoge.gachapin
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/takahirox/webgpu-devtools
URL da Página de Ajuda https://github.com/takahirox/webgpu-devtools
Idiomas Suportados 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:\/\/*\/*"
            ]
        }
    ]
}