Phaser Debugger
Debug tool for Phaser 3
什么是Phaser Debugger?
Phaser Debugger是由Ariorh开发的Chrome扩展程序,该扩展的主要功能是“Debug tool for Phaser 3”。
扩展截图
下载Phaser Debugger扩展crx文件
下载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 } ] } |