PlayBuild
A modern compiler, bundler and package manager for PlayCanvas that adds support for Modules, TypeScript JSX and more
Что такое PlayBuild?
PlayBuild - это расширение Chrome, разработанное Mark Lundin, и его основная функция - "A modern compiler, bundler and package manager for PlayCanvas that adds support for Modules, TypeScript JSX and more".
Снимки экрана расширения
Скачать файл CRX расширения PlayBuild
Скачайте файлы расширений 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 |
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\/*" ] } ] } |