Phaser Debugger

Debug tool for Phaser 3

¿Qué es Phaser Debugger?

Phaser Debugger es una extensión de Chrome desarrollada por Ariorh, y su función principal es "Debug tool for Phaser 3".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Phaser Debugger

Descarga archivos de extensión Phaser Debugger en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Phaser Debugger Phaser Debugger
ID aigiefhkiaiihlploginlonehdafjljd
URL Oficial https://chromewebstore.google.com/detail/phaser-debugger/aigiefhkiaiihlploginlonehdafjljd
Descripción Debug tool for Phaser 3
Tamaño del Archivo 67 KB
Cantidad de Instalaciones 364
Versión Actual 0.2.2
Última Actualización 2023-11-13
Fecha de Publicación 2023-01-24
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Ariorh
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Ariorh1337/phaser-debug-tool
URL de la Página de Ayuda https://github.com/Ariorh1337/phaser-debug-tool/issues
URL de la Página de Política de Privacidad http://ariorh.com/privacy.html
Idiomas Soportados 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
        }
    ]
}