Phaser Debugger
Debug tool for Phaser 3
Τι είναι το Phaser Debugger;
Το Phaser Debugger είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ariorh, και η κύρια λειτουργία του είναι "Debug tool for Phaser 3".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Phaser Debugger
Λήψη αρχείων επέκτασης 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 } ] } |