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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://github.com/Ariorh1337/phaser-debug-tool/issues
عنوان صفحة سياسة الخصوصية 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
        }
    ]
}