PlayBuild
A modern compiler, bundler and package manager for PlayCanvas that adds support for Modules, TypeScript JSX and more
PlayBuild là gì?
PlayBuild là một tiện ích mở rộng Chrome được phát triển bởi Mark Lundin, và tính năng chính của nó là "A modern compiler, bundler and package manager for PlayCanvas that adds support for Modules, TypeScript JSX and more".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PlayBuild
Tải xuống các tệp mở rộng PlayBuild dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PlayBuild |
ID | nehnoidafglmienfkfgghgokkccbpfap |
URL Chính Thức | https://chromewebstore.google.com/detail/playbuild/nehnoidafglmienfkfgghgokkccbpfap |
Mô tả | A modern compiler, bundler and package manager for PlayCanvas that adds support for Modules, TypeScript JSX and more |
Kích Thước Tệp | 3.26 MB |
Số Lần Cài Đặt | 37 |
Phiên Bản Hiện Tại | 0.0.4 |
Cập Nhật Lần Cuối | 2023-01-27 |
Ngày Phát Hành | 2023-01-27 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Mark Lundin |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/wearekuva/playbuild |
URL Trang Trợ Giúp | https://github.com/wearekuva/playbuild/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |