PlayBuild

A modern compiler, bundler and package manager for PlayCanvas that adds support for Modules, TypeScript JSX and more

PlayBuild란 무엇입니까?

PlayBuild은(는) Mark Lundin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A modern compiler, bundler and package manager for PlayCanvas that adds support for Modules, TypeScript JSX and more"입니다.

확장 프로그램 스크린샷

screenshot

PlayBuild 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        PlayBuild is a in-editor compiler, bundler and package manager for the PlayCanvas editor that adds support for Javascript Modules, TypeScript JSX and all the usual features of modern web tooling. You can use js modules and npm libraries in your PlayCanvas projects and it supports all the regular features of a compiler such such as de-duping, minification and treeshaking and more. It also has preliminary support for JSX and TypeScript.

See https://github.com/wearekuva/playbuild for more information                    

확장 프로그램 기본 정보

이름 PlayBuild PlayBuild
ID nehnoidafglmienfkfgghgokkccbpfap
공식 URL https://chromewebstore.google.com/detail/playbuild/nehnoidafglmienfkfgghgokkccbpfap
설명 A modern compiler, bundler and package manager for PlayCanvas that adds support for Modules, TypeScript JSX and more
파일 크기 3.26 MB
설치 횟수 37
현재 버전 0.0.4
최근 업데이트 2023-01-27
출시 날짜 2023-01-27
평점 5.00/5 총 1 개의 평점
개발자 Mark Lundin
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/wearekuva/playbuild
도움말 페이지 URL https://github.com/wearekuva/playbuild/issues
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PlayBuild",
    "version": "0.0.4",
    "description": "A modern compiler, bundler and package manager for PlayCanvas that adds support for Modules, TypeScript JSX and more",
    "manifest_version": 3,
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_icon": {
            "16": "icon-16.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        }
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; default-src 'self'"
    },
    "background": {
        "service_worker": "serviceworkers.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/playcanvas.com\/editor\/scene\/*",
                "https:\/\/playcanvas.com\/editor\/code\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentscripts.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "ipcpm.js",
                "codeeditor\/editor.js",
                "codeeditor\/editor.css",
                "compiler.wasm"
            ],
            "matches": [
                "https:\/\/playcanvas.com\/*"
            ]
        }
    ]
}