Phaser Debugger

Debug tool for Phaser 3

Phaser Debuggerとは何ですか?

Phaser DebuggerはAriorhによって開発されたChromeの拡張機能で、その主な機能は「Debug tool for Phaser 3」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Phaser Debugger拡張機能のCRXファイルをダウンロード

Phaser Debugger拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Phaser Debugger Phaser Debugger
ID aigiefhkiaiihlploginlonehdafjljd
公式URL https://chromewebstore.google.com/detail/phaser-debugger/aigiefhkiaiihlploginlonehdafjljd
説明 Debug tool for Phaser 3
ファイルサイズ 67 KB
インストール数 364
現在のバージョン 0.2.2
最終更新日 2023-11-13
公開日 2023-01-24
評価 5.00/5 合計 3 レビュー
開発者 Ariorh
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Ariorh1337/phaser-debug-tool
ヘルプページのURL https://github.com/Ariorh1337/phaser-debug-tool/issues
プライバシーポリシーページのURL http://ariorh.com/privacy.html
対応言語 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
        }
    ]
}