PlayBuild

PlayBuild

A modern compiler, bundler and package manager for PlayCanvas that adds support for Modules, TypeScript JSX and more

Merlin
Additional files are visible only to premium users

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/*"
      ]
    }
  ]
}