Phaser Debugger
Debug tool for Phaser 3
Phaser Debugger là gì?
Phaser Debugger là một tiện ích mở rộng Chrome được phát triển bởi Ariorh, và tính năng chính của nó là "Debug tool for Phaser 3".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Phaser Debugger
Tải xuống các tệp mở rộng Phaser Debugger dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Phaser Debugger |
ID | aigiefhkiaiihlploginlonehdafjljd |
URL Chính Thức | https://chromewebstore.google.com/detail/phaser-debugger/aigiefhkiaiihlploginlonehdafjljd |
Mô tả | Debug tool for Phaser 3 |
Kích Thước Tệp | 67 KB |
Số Lần Cài Đặt | 364 |
Phiên Bản Hiện Tại | 0.2.2 |
Cập Nhật Lần Cuối | 2023-11-13 |
Ngày Phát Hành | 2023-01-24 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Ariorh |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Ariorh1337/phaser-debug-tool |
URL Trang Trợ Giúp | https://github.com/Ariorh1337/phaser-debug-tool/issues |
URL Trang Chính Sách Bảo Mật | http://ariorh.com/privacy.html |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |