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 |
官方網址 | 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 } ] } |