Phaser Debugger

Debug tool for Phaser 3

Phaser Debugger क्या है?

Phaser Debugger Ariorh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Debug tool for Phaser 3"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Phaser Debugger एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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
        }
    ]
}