Robin Relay

This is a ChromeOS app designed to act as a Robin Relay device.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "1.2.0",
  "manifest_version": 2,
  "default_locale": "en",
  "permissions": [
    "<all_urls>",
    "geolocation",
    "serial",
    "storage",
    "system.network",
    "power"
  ],
  "bluetooth": {
    "low_energy": true
  },
  "icons": {
    "16": "img/robin_r_onGradient.png",
    "128": "img/robin_r_onGradient.png"
  },
  "app": {
    "background": {
      "persistent": true,
      "scripts": [
        "scripts/main.js"
      ]
    }
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "kiosk_enabled": true
}