Phaser Debugger

Debug tool for Phaser 3

Wat is Phaser Debugger?

Phaser Debugger is een Chrome-extensie ontwikkeld door Ariorh, en de belangrijkste functie is "Debug tool for Phaser 3".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Phaser Debugger

Download Phaser Debugger-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Phaser Debugger Phaser Debugger
ID aigiefhkiaiihlploginlonehdafjljd
Officiële URL https://chromewebstore.google.com/detail/phaser-debugger/aigiefhkiaiihlploginlonehdafjljd
Beschrijving Debug tool for Phaser 3
Bestandsgrootte 67 KB
Aantal Installaties 364
Huidige Versie 0.2.2
Laatst Bijgewerkt 2023-11-13
Publicatiedatum 2023-01-24
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Ariorh
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Ariorh1337/phaser-debug-tool
Help Pagina-URL https://github.com/Ariorh1337/phaser-debug-tool/issues
URL van de Privacybeleid Pagina http://ariorh.com/privacy.html
Ondersteunde Talen 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
        }
    ]
}