Phaser Debugger

Debug tool for Phaser 3

Phaser Debuggerคืออะไร?

Phaser Debugger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ariorh และคุณลักษณะหลักของมันคือ "Debug tool for Phaser 3"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Phaser Debugger

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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
        }
    ]
}