Code.org Serial Connector

Code.org Serial Connector

Serial port connector for Code.org's physical computing unit

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "33",
  "manifest_version": 2,
  "default_locale": "en",
  "permissions": [
    "serial",
    "system.storage",
    "unlimitedStorage"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "app": {
    "background": {
      "scripts": [
        "scripts/app.bundled.js"
      ]
    }
  },
  "externally_connectable": {
    "matches": [
      "http://localhost:3017/*",
      "http://localhost:8000/*",
      "http://localhost.studio.code.org:3000/*",
      "http://*.code.org/*",
      "https://*.code.org/*",
      "https://*.cdn-code.org/*",
      "https://s3-us-west-1.amazonaws.com/cdo-j5-test/*"
    ]
  }
}