Phaser Debugger
Debug tool for Phaser 3
Co je Phaser Debugger?
Phaser Debugger je rozšíření Chrome vyvinuté Ariorh, a jeho hlavní funkcí je „Debug tool for Phaser 3“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Phaser Debugger
Stáhněte si soubory rozšíření Phaser Debugger ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Phaser Debugger |
ID | aigiefhkiaiihlploginlonehdafjljd |
Oficiální URL | https://chromewebstore.google.com/detail/phaser-debugger/aigiefhkiaiihlploginlonehdafjljd |
Popis | Debug tool for Phaser 3 |
Velikost souboru | 67 KB |
Počet instalací | 364 |
Aktuální Verze | 0.2.2 |
Poslední Aktualizace | 2023-11-13 |
Datum Vydání | 2023-01-24 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | Ariorh |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/Ariorh1337/phaser-debug-tool |
URL Stránky Nápovědy | https://github.com/Ariorh1337/phaser-debug-tool/issues |
URL Stránky Zásad Ochrany Soukromí | http://ariorh.com/privacy.html |
Podporované Jazyky | 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 } ] } |