Phaser Debugger
Debug tool for Phaser 3
Что такое Phaser Debugger?
Phaser Debugger - это расширение Chrome, разработанное Ariorh, и его основная функция - "Debug tool for Phaser 3".
Снимки экрана расширения
Скачать файл CRX расширения Phaser Debugger
Скачайте файлы расширений Phaser Debugger в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Game debugging extension based on the Phaser 3 game engine. After running the extension on the page, you will see a "Debug" button, clicking on which will display the control panel. You can edit the parameters of the elements right during the execution of the game. Position, scale, textures, animations and more. The extension was created to help developers while debugging projects. Github: https://github.com/Ariorh1337/phaser-debug-tool
Основная информация о расширении
Название | Phaser Debugger |
ID | aigiefhkiaiihlploginlonehdafjljd |
Официальный URL | https://chromewebstore.google.com/detail/phaser-debugger/aigiefhkiaiihlploginlonehdafjljd |
Описание | Debug tool for Phaser 3 |
Размер файла | 67 KB |
Количество установок | 364 |
Текущая Версия | 0.2.2 |
Последнее Обновление | 2023-11-13 |
Дата публикации | 2023-01-24 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | Ariorh |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/Ariorh1337/phaser-debug-tool |
URL страницы помощи | https://github.com/Ariorh1337/phaser-debug-tool/issues |
URL страницы политики конфиденциальности | http://ariorh.com/privacy.html |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Phaser Debugger", "description": "Debug tool for Phaser 3", "version": "0.2.2", "manifest_version": 3, "content_scripts": [ { "js": [ "inject.js" ], "matches": [ "*:\/\/*\/*" ], "match_about_blank": true, "all_frames": true, "run_at": "document_start" } ], "icons": { "16": "logo.png", "48": "logo.png", "128": "logo.png" }, "web_accessible_resources": [ { "resources": [ "index.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "use_dynamic_url": true } ] } |