PlayBuild
A modern compiler, bundler and package manager for PlayCanvas that adds support for Modules, TypeScript JSX and more
Was ist PlayBuild?
PlayBuild ist eine Chrome-Erweiterung, die von Mark Lundin entwickelt wurde, und ihr Hauptmerkmal ist "A modern compiler, bundler and package manager for PlayCanvas that adds support for Modules, TypeScript JSX and more".
Erweiterungsscreenshots
PlayBuild-Erweiterungs-CRX-Datei herunterladen
Laden Sie PlayBuild-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | PlayBuild |
ID | nehnoidafglmienfkfgghgokkccbpfap |
Offizielle URL | https://chromewebstore.google.com/detail/playbuild/nehnoidafglmienfkfgghgokkccbpfap |
Beschreibung | A modern compiler, bundler and package manager for PlayCanvas that adds support for Modules, TypeScript JSX and more |
Dateigröße | 3.26 MB |
Installationsanzahl | 37 |
Aktuelle Version | 0.0.4 |
Letztes Update | 2023-01-27 |
Veröffentlichungsdatum | 2023-01-27 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Mark Lundin |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/wearekuva/playbuild |
Hilfeseite URL | https://github.com/wearekuva/playbuild/issues |
Unterstützte Sprachen | 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\/*" ] } ] } |