Phaser Debugger
Debug tool for Phaser 3
Was ist Phaser Debugger?
Phaser Debugger ist eine Chrome-Erweiterung, die von Ariorh entwickelt wurde, und ihr Hauptmerkmal ist "Debug tool for Phaser 3".
Erweiterungsscreenshots
Phaser Debugger-Erweiterungs-CRX-Datei herunterladen
Laden Sie Phaser Debugger-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Phaser Debugger |
ID | aigiefhkiaiihlploginlonehdafjljd |
Offizielle URL | https://chromewebstore.google.com/detail/phaser-debugger/aigiefhkiaiihlploginlonehdafjljd |
Beschreibung | Debug tool for Phaser 3 |
Dateigröße | 67 KB |
Installationsanzahl | 364 |
Aktuelle Version | 0.2.2 |
Letztes Update | 2023-11-13 |
Veröffentlichungsdatum | 2023-01-24 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Ariorh |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Ariorh1337/phaser-debug-tool |
Hilfeseite URL | https://github.com/Ariorh1337/phaser-debug-tool/issues |
URL der Datenschutzrichtlinien-Seite | http://ariorh.com/privacy.html |
Unterstützte Sprachen | 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 } ] } |