Phaser Debugger
Debug tool for Phaser 3
Vad är Phaser Debugger?
Phaser Debugger är en Chrome-tillägg utvecklad av Ariorh, och dess huvudfunktion är "Debug tool for Phaser 3".
Tilläggsskärmbilder
Ladda ner Phaser Debugger-förlängningens CRX-fil
Ladda ner Phaser Debugger-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Phaser Debugger |
ID | aigiefhkiaiihlploginlonehdafjljd |
Officiell webbadress | https://chromewebstore.google.com/detail/phaser-debugger/aigiefhkiaiihlploginlonehdafjljd |
Beskrivning | Debug tool for Phaser 3 |
Filstorlek | 67 KB |
Antal Installationer | 364 |
Aktuell Version | 0.2.2 |
Senast Uppdaterad | 2023-11-13 |
Publiceringsdatum | 2023-01-24 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | Ariorh |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/Ariorh1337/phaser-debug-tool |
Hjälpsida URL | https://github.com/Ariorh1337/phaser-debug-tool/issues |
URL till Sekretesspolicy Sidan | http://ariorh.com/privacy.html |
Stödda Språk | 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 } ] } |