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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
        }
    ]
}