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ファイルをダウンロード

PlayBuild拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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\/*"
            ]
        }
    ]
}