Phaser Debugger

Debug tool for Phaser 3

O que é Phaser Debugger?

Phaser Debugger é uma extensão do Chrome desenvolvida por Ariorh, e sua principal característica é "Debug tool for Phaser 3".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Phaser Debugger

Baixe arquivos de extensão Phaser Debugger no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Phaser Debugger Phaser Debugger
ID aigiefhkiaiihlploginlonehdafjljd
URL Oficial https://chromewebstore.google.com/detail/phaser-debugger/aigiefhkiaiihlploginlonehdafjljd
Descrição Debug tool for Phaser 3
Tamanho do Arquivo 67 KB
Contagem de Instalações 364
Versão Atual 0.2.2
Última Atualização 2023-11-13
Data de Publicação 2023-01-24
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Ariorh
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Ariorh1337/phaser-debug-tool
URL da Página de Ajuda https://github.com/Ariorh1337/phaser-debug-tool/issues
URL da Página de Política de Privacidade http://ariorh.com/privacy.html
Idiomas Suportados 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
        }
    ]
}