Phaser Debugger

Debug tool for Phaser 3

Cos'è Phaser Debugger?

Phaser Debugger è un'estensione di Chrome sviluppata da Ariorh, e la sua funzione principale è "Debug tool for Phaser 3".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Phaser Debugger

Scarica i file di estensione Phaser Debugger in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Phaser Debugger Phaser Debugger
ID aigiefhkiaiihlploginlonehdafjljd
URL Ufficiale https://chromewebstore.google.com/detail/phaser-debugger/aigiefhkiaiihlploginlonehdafjljd
Descrizione Debug tool for Phaser 3
Dimensione del File 67 KB
Conteggio Installazioni 364
Versione Corrente 0.2.2
Ultimo Aggiornamento 2023-11-13
Data di Pubblicazione 2023-01-24
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Ariorh
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Ariorh1337/phaser-debug-tool
URL della Pagina di Aiuto https://github.com/Ariorh1337/phaser-debug-tool/issues
URL della Pagina della Politica sulla Privacy http://ariorh.com/privacy.html
Lingue Supportate 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
        }
    ]
}