webgpu-devtools
WebGPU devtools for debugging WebGPU applications
Что такое webgpu-devtools?
webgpu-devtools - это расширение Chrome, разработанное hogehoge.gachapin, и его основная функция - "WebGPU devtools for debugging WebGPU applications".
Снимки экрана расширения
Скачать файл CRX расширения webgpu-devtools
Скачайте файлы расширений 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 |
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:\/\/*\/*" ] } ] } |