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
官方網址 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\/*"
            ]
        }
    ]
}